Hi,
I am trying to create simple technical rule, for example:
bool LongEntryCondition = ((Keltner_Lower(Price, 23, 0.09) Crosses Above "Whatever"
I know how to plot the Keltner bands (see Exhibit B) but I don't know to reference them in a rule similar Exhibit A and can't find any relevant examples in the manual or on this forum. Please help.
Exhibit A:
bool LongEntryCondition = ((Keltner_Lower(Price, 23, 0.09) Crosses Above "Whatever"
Exhibit B:
Keltner(Price,23,0.09);
plot("KeltnerUp",rRealUpperBand,BAND1,0x800000FF);
plot("KelterDown",rRealLowerBand,BAND2,0x0000CC);