PureBytes Links
Trading Reference Links
|
This is a hook from extreme using the cci indicator. I am trying to
eliminate any long signals
for about 4 bars after the hook. signals are simply pullbacks against the
upward linear regression. if
anyone could show me an example of how to how to extend the barsplus forward
I would appreciate it. I have barsplus(4) in my inputs, I have named it as a
variable, and I am using values, no plots and I am writing text This seems
like a simple line of code.
I hope this is enough info to make sense as to what I want. thanks , John
CONDITION4 = VALUE2{CCI 14} < VALUE2[1] AND VALUE2[1] > 200;{HOOK FROM
EXTREME}
IF CONDITION4 THEN BEGIN X = TEXT_NEW(DATE,TIME,LOW,"X");end;
Don't write any text for 4 bars after the hook.
|