PureBytes Links
Trading Reference Links
|
Am trying to plot a Paint bar , which plots the Highest high.
The code looks alright to me. But it doesnt Paint any bars. On going through
it visually, I see where many of the conditions are being met.
I took the code from the builtin Showme " Brkout of X bar High "
and changed it to a Paintbar indicator.
Any suggestions.
Michael
=========================================
Input:
Price(c),
Len1(10);
IF currentbar >1 and price > Highest(High,Len1)
Then Begin
Plot1(High,"High");
Plot2(Low,"Low");
IF CheckAlert Then Alert = TRUE;
End;
|