My Trades and Notes

PUCHU_2500

Well-Known Member
Breakout as expected!:)
If traded NIFTY Call option of 7800 would have given another 10 points!

why I can't see your and TJ's chart ! missed any important software from my laptop ?
 

extremist

Well-Known Member
any AFL to mark High/Low of weekly and High/Low of last 2 days?
It'll make the work easier(lazy Trader mee) :D
I dont have any AFL for that...i think you can get that from Amitrandive post...
I hope this will help u all.
To save your energy and time.

the special feature to recognize the cursor location is very help full in backtesting your strategy without cluttering your chart much.


Code:
Period = Param("display length", 375, 2, 1875,1 ); 
bi = BarIndex(); 
procedure PlotLevel( array, nam, Col,sty ) 
{ 
 x = SelectedValue( bi ); 
 y = SelectedValue( array ); 
 Plot( IIf( bi >= x AND bi < x + Period, y, Null ),nam, Col, sty ); 
 PlotText( nam, x+1, y, Col ); 
} 

if( ParamToggle("Weekly HL", "No|Yes", 1))
{
wh = TimeFrameGetPrice("H",inWeekly,-1);
wl = TimeFrameGetPrice("L",inWeekly,-1);

PlotLevel( wh, "\nWH - "+wh+"", colordarkyellow,styleLine|stylethick ); 
PlotLevel( wl, "\nWL - "+wl+"", colordarkyellow,styleLine|stylethick ); 
}

if( ParamToggle("Y'Day HL", "No|Yes", 1))
{
dh = TimeFrameGetPrice("H",indaily,-1);
dl = TimeFrameGetPrice("L",indaily,-1);

PlotLevel( dh, "\nDH - "+dh+"", colortan,styleLine ); 
PlotLevel( wl, "\nDL - "+dl+"", colortan,styleLine); 
}

if( ParamToggle("Today-2 HL", "No|Yes", 1))
{
d2h = TimeFrameGetPrice("H",indaily,-2);
d2l = TimeFrameGetPrice("L",indaily,-2);

PlotLevel( d2h, "\nD2H - "+d2h+"", colororange,styledashed ); 
PlotLevel( d2l, "\nD@L - "+d2l+"", colororange,styledashed ); 
}
 
Last edited:

PUCHU_2500

Well-Known Member
You didnt reply my query in Subhadip's thread on 2MA,that could be the reason Puchu. :D :lol: And finally I gave up..
O my intelligent boy, .....now good night......
 

karthik_sri

Well-Known Member
I hope this will help u all.
To save your energy and time.

the special feature to recognize the cursor location is very help full in backtesting your strategy without cluttering your chart much.


Code:
Period = Param("display length", 375, 2, 1875,1 ); 
bi = BarIndex(); 
procedure PlotLevel( array, nam, Col,sty ) 
{ 
 x = SelectedValue( bi ); 
 y = SelectedValue( array ); 
 Plot( IIf( bi >= x AND bi < x + Period, y, Null ),nam, Col, sty ); 
 PlotText( nam, x+1, y, Col ); 
} 

if( ParamToggle("Weekly HL", "No|Yes", 1))
{
wh = TimeFrameGetPrice("H",inWeekly,-1);
wl = TimeFrameGetPrice("L",inWeekly,-1);

PlotLevel( wh, "\nWH - "+wh+"", colordarkyellow,styleLine|stylethick ); 
PlotLevel( wl, "\nWL - "+wl+"", colordarkyellow,styleLine|stylethick ); 
}

if( ParamToggle("Y'Day HL", "No|Yes", 1))
{
dh = TimeFrameGetPrice("H",indaily,-1);
dl = TimeFrameGetPrice("L",indaily,-1);

PlotLevel( dh, "\nDH - "+dh+"", colortan,styleLine ); 
PlotLevel( wl, "\nDL - "+dl+"", colortan,styleLine); 
}

if( ParamToggle("Today-2 HL", "No|Yes", 1))
{
d2h = TimeFrameGetPrice("H",indaily,-2);
d2l = TimeFrameGetPrice("L",indaily,-2);

PlotLevel( d2h, "\nD2H - "+d2h+"", colororange,styledashed ); 
PlotLevel( d2l, "\nD@L - "+d2l+"", colororange,styledashed ); 
}
Thanks extremist...is it possible to draw line for these values so that visually it is easy to see the area!
 

karthik_sri

Well-Known Member
"m not getting u bro....
lines r there.....
Yes...i could get that when i click on the candle...good that it is not plotting the lines all over the charts for all the day...it will mess up the chart...very good that it plots the line on the selected day candle:clapping::clapping:...
Thanks bro!
 
Thread starter Similar threads Forum Replies Date
tradingwithmike Forex 0
B Trading Diary 15
P Technical Analysis 7
T Software 0
X Trading Diary 56

Similar threads