Tolotra Ny:
Hello, I have a problem with my code, it doesn't place an order when the arrow from the indicators appears
Thanks for replying :-)
Those are my code for INDICATOR and EA
I have solved it
Thanks :-)
This is the correct line code
// I put some parameter // #define EAName "EA TEST" #define test "test" #define CrossUp 6 #define CrossDown 7 ............ int start(){ ............ //main signal double ASC2=iCustom(NULL, 0,"test", RSI_Period,RSI_Price,Volatility_Band,RSI_Price_Line,RSI_Price_Type,Trade_Signal_Line,Trade_Signal_Type, CrossDown,i); double ASC1=iCustom(NULL, 0,"test", RSI_Period,RSI_Price,Volatility_Band,RSI_Price_Line,RSI_Price_Type,Trade_Signal_Line,Trade_Signal_Type, CrossUp,i); .............. }
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
Hello, I have a problem with my code, it doesn't place an order when the arrow from the indicators appears
Thanks for replying :-)
Those are my code for INDICATOR and EA