I would like to recreate the Vegas Tunnel EA. But I have a problem here. How do I code the MA to have multiple shadows(levels) on a EA?
PHP Code:
MA11=iMA(NULL,PERIOD_H1,144, 0, MODE_EMA, PRICE_CLOSE, 0);
MA12=iMA(NULL,PERIOD_H1,144, 0, MODE_EMA, PRICE_CLOSE, 1);
MA21=iMA(NULL,PERIOD_H1,169, 0, MODE_EMA, PRICE_CLOSE, 0);
MA22=iMA(NULL,PERIOD_H1,169, 0, MODE_EMA, PRICE_CLOSE, 1);
Ok, the above MA declaration can see the cross of EMA144 vs EMA169, but how can I declare the fib lines? So I know where is the current support and resistance? Any help will be deeply appreciated.
Regards
David