Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
hourly breakout afl for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | tn = TimeNum (); // define start/end hours in TimeNum format StartTime = 93000; Endtime = 113000; // these conditions are true when TimeNum of the bar equals startime/endtime StartBar = tn == StartTime; EndBar = tn == Endtime; // on the end bar we read the value of highest high or lowest low since the start bar myH = ValueWhen ( EndBar, HighestSince ( StartBar, High ) ); myL = ValueWhen ( EndBar, LowestSince ( StartBar, Low ) ); // display price and high / low arrays Plot ( Close , "Close" , colorDefault , styleBar | styleThick ); Plot ( myH, "myH" , colorGreen , styleThick ); Plot ( myL, "myL" , colorRed , styleThick ); // grey lines show how highest high / lowest low develop since start bar Plot ( HighestSince ( StartBar, High ), "" , colorgrey50 ); Plot ( LowestSince ( StartBar, Low ), "" , colorgrey50 ); // area chart shows the zone we are reading our values from Plot ( tn >= StartTime AND tn <= Endtime, "" , ColorBlend( colorYellow , colorWhite , 0.9 ), styleArea | styleOwnScale , 0, 1, 0, -1); |