Script Needed For Chart 08.08.08
I need a simple script written for FXTREK’s intelliscript program. I trade forex and I am stuck on writing the script that I want. Here is what I have so far:
IF BarClosed() and CrossDOWN(Gann_HiLoA[0](Close, 12) ,Close[0]) THEN
AddBuyEntry
ENDIF
IF BarClosed() and CrossUP(Gann_HiLoA[0](Close, 12) ,Close[0]) THEN
AddSellEntry
ENDIF
Basically what this script does is it gives me a buy or sell signal when the price crosses and closes above the Gann_HiLoA indicator. I want to add a price filter where once the price closes above the indicator the price has to move another 12 pips before the buy or sell signal is given. So if I was using the script on a 30 minute chart – once the price crosses and closes above the indicator, the price would have to move another 12 pips in another 30 minute time frame.
I hope someone can help as I have no programming experience and this has been very frustrating. I have a very low budget for this project. It shouldn’t be that difficult for someone with programming experience.