• 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

hello, I find this indicator and EA. However it does not open trade on the arrow, it opens somewhere else (see the figure).
What I want is open trade when arrows show up.
Can somebody take a look, see what is wrong?
Thanks
 

Attachments

Dear Puturex, all these EA's have different strategies, however Radar signal is purely based on technical indicators and produce signal when all 6 indicators combines together at some point.

BSTrend is based on fancy indicator and could be used for scalping.

Zaman Martingale strategy designed for specially martingale lovers.

SMA200 used for long term traders.
Mr. Ahmad Khan can you share EA BStrend pls?

Much Love :h::h::h:
 
Dear Puturex, all these EA's have different strategies, however Radar signal is purely based on technical indicators and produce signal when all 6 indicators combines together at some point.

BSTrend is based on fancy indicator and could be used for scalping.

Zaman Martingale strategy designed for specially martingale lovers.

SMA200 used for long term traders.

Hello Ahmad Khan, please what are the best timeframes for each of these ea's by the experience of using them
 
hello, even supersignal repaints, it should open trade around the arrow_up and arrow_down, but why is it open the trade far from the arrow?
I guess the EA did not read arrow correctly.
See below. Is that statement to get ArrowUp correct?

// Get Supersignal state
ArrowUp = iCustom(NULL,0,"supersignals",1,1);
ArrowDown = iCustom(NULL,0,"supersignals",0,1);
// Open orders on new bar only
if (tCurTime != Time[0]) {
tCurTime=Time[0];

// Get the first free ticket
iFreeTicket=GetFreeTicket();

// Open Buy order if previous bar has arrow up signal
if (ArrowUp!=EMPTY_VALUE && iFreeTicket>-1) {
giTicket[iFreeTicket]=OrderSend(Symbol(),OP_BUY,Lots, Ask, Slippage, 0, 0,
"Supersignal", MagicNr+i, NULL, LimeGreen);
 
Back
Top