My System - My trades.

The ribbons were well respected. Now the SL for longs stands at 20555. Thanks Happy ji for the ribbons.
The day was easy . . . tight range but the basic rules kept me on the right side . . .

yet many . . .many thing to learn here, from your inputs, keep them coming :thumb:


Just wishing that trading was as easy as AFL Coding :lol:


Happy :)
 
Yes Varun ji. Cn it be more simpler? How to capture these swing points?
As soon as a red ribbon on 1 min 15 period OBV ribbon changes its colour to blue, go to 1 min price chart and mark a lowest point in the preceeding red colour band...this is our support. And as soon as the band colour changes from blue to red, then go to the 1 min price chart and mark the highest point achieved in the preceeding blue band...this is our resistance point...

We trade long when the market is making higher bottoms( and higher tops) and short when it is making lower tops (and lower bottoms)...

Chart par mark karo...simple hain...

Smart_trade
 
Hello

This is the code (old) used for plotting 15 Period OBV ribbon

Code:
Ob = OBV();
H15 = HHV(Ob,15);			L15 = LLV(Ob,15);	
B1 = Cross(Ob,Ref(H15,-1));		S1 = Cross(Ref(L15,-1),Ob);
B1 = ExRem(B1,S1);			S1 = ExRem(S1,B1);
UP1 = Flip(B1,S1);			DN1 = Flip(S1,B1);
PlotOHLC(10,15,10,10,"",IIf(UP1,colorBlue,colorRed),styleOwnScale|styleNoLabel|styleCloud,0,500);
Add these two line to it, if you want to plot vertical lines on your chart marking the bar on which the ribbon flips color

Code:
Plot(IIf(B1,1,0),"",colorBlue,styleOwnScale|styleNoLabel|styleHistogram|styleDashed,0,1);
Plot(IIf(S1,1,0),"",colorRed, styleOwnScale|styleNoLabel|styleHistogram|styleDashed,0,1);

Happy :)
 

wisp

Well-Known Member
Hello

This is the code (old) used for plotting 15 Period OBV ribbon

Code:
Ob = OBV();
H15 = HHV(Ob,15);			L15 = LLV(Ob,15);	
B1 = Cross(Ob,Ref(H15,-1));		S1 = Cross(Ref(L15,-1),Ob);
B1 = ExRem(B1,S1);			S1 = ExRem(S1,B1);
UP1 = Flip(B1,S1);			DN1 = Flip(S1,B1);
PlotOHLC(10,15,10,10,"",IIf(UP1,colorBlue,colorRed),styleOwnScale|styleNoLabel|styleCloud,0,500);
Add these two line to it, if you want to plot vertical lines on your chart marking the bar on which the ribbon flips color

Code:
Plot(IIf(B1,1,0),"",colorBlue,styleOwnScale|styleNoLabel|styleHistogram|styleDashed,0,1);
Plot(IIf(S1,1,0),"",colorRed, styleOwnScale|styleNoLabel|styleHistogram|styleDashed,0,1);

Happy :)
Very nice Happy Ji. Possible trades acc to my understanding.

 
Last edited:
Another thing i have observed is that a trend matures to a good trend on breaching 200EMA both in price and OBV. Adds during this time have a better chance to give exponential returns as after the battle at 200EMA one group (Bulls or Bears) wrests control and takes it to the next level where it waits again for 200EMA to catch up. Just try this approach in your trading.
 

Similar threads