Only users who purchased or rented the product can leave comments
jabautista  
Any parameters that can be adjusted for the lower timeframes?
Issara Seeboonrueang  
jabautista #:
Any parameters that can be adjusted for the lower timeframes?

Hi


I will add 2 parameters for you.

1.Trend Filter

2.Signal Level


Timeframe lower, if the filter trend with low values will be less signal because it needs to pullback the graph and must follow the trend.


Thank you for your question. I will do my best.

Dimitri Nepomniachtchi  
MT Merit Pullback + aditional indicators
Do they predict price directions for me?! They will rather help me assess the current situation.

ファイル:
Issara Seeboonrueang  
Dimitri Nepomniachtchi #:
MT Merit Pullback + aditional indicators
Do they predict price directions for me?! They will rather help me assess the current situation.

Hi  Dimitri

There may be more trading methods for you.

(at private message)

Issara Seeboonrueang  
Dimitri Nepomniachtchi #:
Why don't you enable buffers for automated trading?
Hi, the buffer is still open. No changes.
Issara Seeboonrueang  
//******************Expert Advisor Code***************************** 

//***** Declaring a variable directly : parameter 
double ArrowUp, ArrowDn;
int myOrderType=0;

//***** Declare a variable directly : int start() 
ArrowUp = iCustom(NULL,0,"Market/MT Merit Pullback",0,1); //Buy 
ArrowDn = iCustom(NULL,0,"Market/MT Merit Pullback",1,1); //Sell 

//***** Take the variable myOrderType and put it into the function order Buy, Sell.
myOrderType=0; 
if(ArrowDn!=EMPTY_VALUE && ArrowDn!=0){ myOrderType = 1;} //Sell 
if(ArrowUp!=EMPTY_VALUE && ArrowUp!=0){ myOrderType = 2;} //Buy

//******************************************************************
Only users who purchased or rented the product can leave comments