Page 1 of 1

Open-High,Open-low Scanner

Unread postPosted: Sun Mar 15, 2015 9:08 pm
by Nidhish
//Nidhish code

Buy = TimeFrameGetPrice("L",inDaily,0)==TimeFrameGetPrice("O",inDaily,0) ;

Sell = TimeFrameGetPrice("H",inDaily,0)==TimeFrameGetPrice("O",inDaily,0) ;


Filter=Buy OR Sell;

AddColumn(IIf(Buy,BuyPrice,Null)," open=low ", 6.2,1.2,colorGreen);
AddColumn(IIf(Sell,SellPrice,Null)," open= high ",6.2,1.2,colorOrange);