You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Here is some more code: (Oh! I see I have forgotten to change the array size with my test if BUY is true - but that should not make any difference to the string of SELL alerts I am getting for EURUSD at the moment, because with the SELL test the array size is correct (??)
Ernest, can you show the relationship between CurrencyBuySignal and CurrencySellSignal and these variables . . .
To generate one of the conditions for an alert I have a Buy/Sell Array[4] which generates a "Buy" or a "Sell" if all 4 instances are true. (There are other tests too)
One of the instances (Buy/Sell Array[3]) is generated if either the StochBuy/SellSignal or the CurrencyBuy/SellSignal is true.
Last mentioned bool refers to my code in my first post.
To generate one of the conditions for an alert I have a Buy/Sell Array[4] which generates a "Buy" or a "Sell" if all 4 instances are true. (There are other tests too)
One of the instances (Buy/Sell Array[3]) is generated if either the StochBuy/SellSignal or the CurrencyBuy/SellSignal is true.
Last mentioned bool refers to my code in my first post.
Even if CurrencySell/BuySignal are false if StochSell/BuySignal are true Sell/BuyArray[3] will be true . . . so to answer your first post . . .
Here is the simple code. I get an alert signal even when just the middle condition (e.g. EURafter < USDafter) is true and the other two conditions are false !
Yes but the problem is there when the StochSell/BuySignal is false and the CurrencySell/BuySignal should actually also be false - but is not.
The signal is generated because of the incorrect CurrencySell/BuySignal input. If i take away the StochSell/BuySignal code the problem is still there.