Disliked{quote} I just checked in tester and I see exactly the same arrows as on realtime chart. Live chart: {image} Tester chart: {image}Ignored
others coders, please helpe
thanks
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} I just checked in tester and I see exactly the same arrows as on realtime chart. Live chart: {image} Tester chart: {image}Ignored
Disliked{quote} it is repaint in realtime. others coders, please helpe thanksIgnored
QuoteDisliked...difference...one used a predefined array (MT4) with value ready for access... while the other use a timeseries function (MT5), which...not readily available
QuoteDislikedis a reason why one would prefer using the timeseries function
Disliked{quote} Need an example of this, what do I do to recreate the issue?Ignored
Disliked{quote} Master this is what i mean, it was working fine all through yesterday, when it stop printing the candles i double click and ok, all other candles disappear if you noticed i add the stoch, but i dont understand what the stoch is doing to it to stop working and i dont want to have double window this happens to all of them but this particular is the W6MA {image}Ignored
#property show_inputs
#define NL "\n"
extern double RiskPercent = 0.1;
extern int Slippage = 3;
extern int BEtop = 10;
extern double atrMultiple = 1;
extern int magic = 0;
extern string TradeComment="BUY";
//+------------------------------------------------------------------+
//| script "Open a new Buy Order" |
//+------------------------------------------------------------------+
double getATRvalue()
{
int pipMult = 10000;
if (StringFind(Symbol(),"JPY",0) != -1)
{
pipMult = 100;
}
//fetch current 14-period ATR value
double atr = iATR(NULL,0,20,0);
atr = atr * pipMult;
return (atr);
}
//+-----------------------------------------------------------------+//
int start()
{
double Price = WindowPriceOnDropped();
bool result;
int cmd,total,error,slippage;
//----
int NrOfDigits = MarketInfo(Symbol(),MODE_DIGITS); // Nr. of decimals used by Symbol
int PipAdjust; // Pips multiplier for value adjustment
if(NrOfDigits == 5 || NrOfDigits == 3) // If decimals = 5 or 3
PipAdjust = 10; // Multiply pips by 10
else
if(NrOfDigits == 4 || NrOfDigits == 2) // If digits = 4 or 3 (normal)
PipAdjust = 1;
//----
double nTickValue=MarketInfo(Symbol(),MODE_TICKVALUE); //value of a tick
if(Digits==3 || Digits==5){ //If the digits are 3 or 5 we normalize multiplying by 10
nTickValue=nTickValue*10;
}
double atr = MathRound(getATRvalue());
double stopAtr = atr * atrMultiple;
double BEplus = stopAtr + BEtop;
double stop_loss = Price - stopAtr * Point * PipAdjust;
double take_profit = Price + BEplus * Point * PipAdjust;
double Lots = (AccountBalance()*RiskPercent/100)/(stop_loss*nTickValue);
Lots = (MathRound(Lots/MarketInfo(Symbol(),MODE_LOTSTEP))*MarketInfo(Symbol(),MODE_LOTSTEP)) / 2; //to round up the lots to prevent errors with minimum lot size by broker etc.
Comment("ATR(20): ", atr+ NL,"SLpips: ", stopAtr+ NL, "TPpips: ", BEplus+ NL, "Lots ", Lots);
slippage = Slippage * PipAdjust;
if(Ask > Price)
{
result = OrderSend(Symbol(),OP_BUYLIMIT,Lots,Price,slippage,stop_loss,take_profit,TradeComment,magic,0,CLR_NONE);
result = OrderSend(Symbol(),OP_BUYLIMIT,Lots,Price,slippage,stop_loss,0,TradeComment,magic,0,CLR_NONE);
}
else
{
result = OrderSend(Symbol(),OP_BUYSTOP,Lots,Price,slippage,stop_loss,take_profit,TradeComment,magic,0,CLR_NONE);
result = OrderSend(Symbol(),OP_BUYSTOP,Lots,Price,slippage,stop_loss,0,TradeComment,magic,0,CLR_NONE);
}
//----
return(0); Disliked{quote} Ok, now, love it or leave it! I have performed a major operation on this indicator! All alerts have been tested out and working. I will only supply the ex4 file, because I don't want anybody to mess this up! File is also protected from changing the file name. All persons involved in the creation of this indicator have been indicated. EDIT!!! Just a little tweak in the inputs section that I missed: {file}Ignored
Disliked{quote} hi BestTraderEv this was a fantastic mod you did to the rsioma indicator making it perfect. many thanks for that. one more request, can you make alert on two rsioma cross...1) ignoring the ma crosss completly 2 ignore the trend and trigger levels completlyl 3) marking the cross with dotted vertical line on chart. in short alert : EURUSD H4 at 12.00 RSIOMA crossed up {image} {file} many thanka in advanceIgnored
Disliked{quote} Thanks again. Can we make it that the indicator checks the last 3 daily candles to confirm the pattern rather than scan all history. The pattern again is: Bullish Scenario 1. Candle 1 is first reference candle 2. Candle 2 sweep candle 1 Low but does not close above candle 1 high 3. Candle 3 Does Not sweep candle 2 Low but sweep and close with a body of candle 2 High. When this happens, an onscreen note " Three Bar Candle Bullish: ON", if not "Three Bar Candle Bullish: OFF'' Bearish Scenario 1. Candle 1 is first reference candle 2. Candle...Ignored
Disliked{quote} HI it looks good the crossing lines,can you please share the settings ? thank youIgnored
Disliked{quote} You're still not giving enough information. What happens when you switch chart tfs, reload the indicator, is there anything in the experts tab, just saying its not working isn't enough.Ignored
Disliked{quote} SR_Equal_HL - looks for equal highs/lows - input history (number of candles to look through) - optional pip margin (distance to a matching high/low in pip, check printout) - optional minimum candles apart (between two highs/lows) - optional clear-match or candles in way (no candles in the way of a line) - draw limit (limit of lines drawn, start from live to the left) - show/hide btn updated - styles and width bug {image} pips margin and adjust, a printout is provided to see what is considered a pip and what the margin to match is {image}...Ignored
Disliked{quote} Master i tried again the same situation, i dont change timeframe, i just left it the way its applied, however am using it on MTF, attached is from expert tab {image} {image}Ignored