PureBytes Links
Trading Reference Links
|
Hi, I know this reply is a bit late but I have been away for a couple of
weeks...but here is a way that you can determine the all time high for a
contract...but remember that if you are working with continuous contracts
the figure will be invalid.
Variables: ath(0);
ath = high;
if high > ath then ath = high;
plot1(ath, "AllTimeHigh");
|