• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion I will make a Free EA with your Indicator

mr tanaka to avoid time news wrong, can you change ea to read ffc indicators and place at indicators folder
need to change
1. ea 10pips
2. ea yikpuyII
3. ea radar
 

Attachments

Master Tanaka ... can you help me make EA on the basis of RSI (3) EMA (100), Algorithm: Open Buy If RSI (3) touches number 10 and candlestic above EMA 100, close position if RSI (3) touches the number 90, Open Sell if RSI (3) touches the number 90 and candlestic under EMA 100, close position if RSI (3) touches number 10, Additional: 1.News High impact allert pending position or close all. 2. Stoplose 3. Control Spread, 4. All time frame, 5. Maximal open position,
Name EA: Jayadipura scalping
This is it.
It looks like Reverse Mode=TRUE is better....:blush:

GU (TF M5)
upload_2018-12-6_13-46-29.png
 

Attachments

  • upload_2018-12-6_13-46-29.png
    upload_2018-12-6_13-46-29.png
    9 KB · Views: 985
  • EA_Jaya Scalping.ex4
    EA_Jaya Scalping.ex4
    133.7 KB · Views: 299
Hi Tanaka San,
Did you write Ea_ApexPoint with FSB ? Because I've got no orders on Activtrades and know that the problem could sometimes be about few lines in the code generated by FSB.
If it's the case, I've got these few lines and be able to send you them to place in the code.
Thanks for reply.
 
W
Hi Tanaka San,
Did you write Ea_ApexPoint with FSB ? Because I've got no orders on Activtrades and know that the problem could sometimes be about few lines in the code generated by FSB.
If it's the case, I've got these few lines and be able to send you them to place in the code.
Thanks for reply.
What do you mean few lines in the code generated by FSB.???
What is that?
 
W

What do you mean few lines in the code generated by FSB.???
What is that?
Dear Tanaka San,
I use to exchange many MQ4's EA with other coders on the web. Each of these EA are built with FSB. That's not a problem but often, these ea don't work with few broker because their informatic's systems is not full compatible with MT4. After many investigations, we (me and other coders) found that one recurrent problem results from the reading of FSB's code for 4 and 5 decimals conversions. And we found the solution with the incorporation of these line in the code :

int Decimals=1;
double ModeLotStep = MarketInfo(Symbol(), MODE_LOTSTEP);
if (ModeLotStep == 0.01) Decimals = 2;
if (ModeLotStep == 0.001) Decimals = 3;
amount=NormalizeDouble(amount,Decimals);

So, that's the reason why I asked you if you use FSB. If it's case, can you please add these lines in the EA_ApexPoint.exe4 (or send me mq4 !:inlove:) in order to open orders on my live account ? My PM : [email protected]

Regards
 
Dear Tanaka San,
I use to exchange many MQ4's EA with other coders on the web. Each of these EA are built with FSB. That's not a problem but often, these ea don't work with few broker because their informatic's systems is not full compatible with MT4. After many investigations, we (me and other coders) found that one recurrent problem results from the reading of FSB's code for 4 and 5 decimals conversions. And we found the solution with the incorporation of these line in the code :

int Decimals=1;
double ModeLotStep = MarketInfo(Symbol(), MODE_LOTSTEP);
if (ModeLotStep == 0.01) Decimals = 2;
if (ModeLotStep == 0.001) Decimals = 3;
amount=NormalizeDouble(amount,Decimals);

So, that's the reason why I asked you if you use FSB. If it's case, can you please add these lines in the EA_ApexPoint.exe4 (or send me mq4 !:inlove:) in order to open orders on my live account ? My PM : [email protected]

Regards
HI, is this full code?
'amount' - undeclared identifier ....
What is this ammout used for?
 

Attachments

Back
Top