Requests & Ideas - page 10

 

Hi, is it possible that someone here can make a alert to this indicator, there are different levels of alerts here but I would like to have a alert on the 3 strongest signals in both directions.

Thanks in advance

Best regards

Halvard

Files:
 

Trading system??

Hi..

Is it possible that you expert people at Advanced Elite group can put together

a trading system for the members?. The reason I ask is becouse its thousands of indicators here and its hard to choose the most reliable ones. So I was thinking of a good system with reliable indicators and some rules.

Hope someone can help?

Thanks in advance.

Regards, halvard

 
halvardu:
Hi..

Is it possible that you expert people at Advanced Elite group can put together

a trading system for the members?. The reason I ask is becouse its thousands of indicators here and its hard to choose the most reliable ones. So I was thinking of a good system with reliable indicators and some rules.

Hope someone can help?

Thanks in advance.

Regards, halvard

are you saying that you have a system and would like someone to code it or are you asking someone to go through all the indicators on forex-tsd and create a system for you?

i can get it programmed for you if you want to post everything here (thats if you have an idea of a trading system)

 

I have an idea of a trading system, if I may. As we all know prices move up or down with different speed. As a result, many times an idicator follows the price too quickly and then stay in overbought/oversold area for much too long, giving a wrong impression that the trend has ended, thus causing a premature exit. On the other hand, they sometimes lag the price move. I am dreaming of an indicator which would keep its pace steady, somehow 'learning' as the price moves along. I know a moving average can partly solve the problem but an indicator would be more visible. Wonder if it's possible at all?

 
msquared:
are you saying that you have a system and would like someone to code it or are you asking someone to go through all the indicators on forex-tsd and create a system for you? i can get it programmed for you if you want to post everything here (thats if you have an idea of a trading system)

Hi..

I'm not asking for someone to go through all the indicators, I was thinking that the leaders of AE know the most reliable indicators, and hoping that they can help to select the most rliable ones..

Regards, halvard

 

please can convert Super ADX from easy language (TS) to mt4

Hi,

I have the Super ADX indicator but is in easy language code, can anyone convert it to mt4 please.

the website is this from indicator is SuperADX Leading Indicator for Tradestation & MetaTrader4 - Forex Currency Trading E-minis, Emini Day Trading and 4X Currencies Swing Trading

here is the code

{

***** Study name: 'SuperADX+'

}

{ ***** DLLs Section ***** }

{ ***** INPUTs Section *****}

Inputs: WavePeriod(10), OverSold(- 60), OverBought(60), uptrigger(- 50);

Inputs: dntrigger(53), color1(2), color2(7), color3(6), colourDeltaBar(1);

Inputs: upcolour(2), downcolour(6), Greendot(4), RedDot(5), WhiteBarSpacing(10);

Inputs: HIALERT1(35), LOALERT1(20), LOALERT2(10), FastLength(12);

Inputs: SlowLength(26), MACDLength(9);

{ ***** VARs Section ***** }

Variables: Var1(21), Var2(0), Var3(0), Var4(0), Var5(0);

Variables: Var6(0), Var7(0), Var8(FALSE), Var9(0), Var10(0);

Variables: Var11(0), Var12(FALSE), Var13(0), Var14(" ");

Variables: Var15(0), Var16(FALSE), Var17(0), Var18(FALSE);

Variables: Var19(0), Var20(FALSE), Var21(FALSE);

{ ***** ARRAYs Section *****}

{ ***** CODE Section ***** }

#EVENTS OnDestroy = EasyLanguageRtlOnDestroy ;

#END ;

if CurrentBar = 1 then

begin

Var13 = GetAppInfo (1) ;

end ;

if Var18 = FALSE then

begin

if ok2TradeMatrix then Var18 = TRUE ;

end ;

if Var18 = TRUE then

begin

Var8 = FALSE ;

Var2 = (HIGH+LOW+CLOSE)/3 ;

Var3 = xaverage (Var2, WavePeriod) ;

Var4 = xaverage (AbsValue (Var2-Var3), WavePeriod) ;

if Var4 > 0 then Var5 = (Var2-Var3)/(0.015000*Var4) ;

Var6 = xaverage (Var5, Var1) ;

Var7 = average (Var6, 4) ;

if Var6 CROSS OVER Var7 AND Var6 < uptrigger then Var8 = TRUE ;

if Var7 CROSS OVER Var6 AND Var6 > dntrigger then Var8 = TRUE ;

Var12 = FALSE ;

Var9 = MACD (CLOSE, FastLength, SlowLength) ;

Var10 = XAverage (Var9, MACDLength) ;

Var11 = Var9-Var10 ;

if (Var9 > Var10 AND Var9[1] < Var10[1]) OR (Var9 Var10[1]) then Var12 = TRUE ;

Var19 = ADX (14) ;

Var20 = Var19[1] > HIALERT1 AND Var19 Var19[2] ;

if (Var20) then

begin

if (Var15 = 0) then

begin

Var15 = 1 ;

Var17 = CurrentBar ;

end ELSE if (CurrentBar-Var17 <= WhiteBarSpacing) then

begin

Var15 = Var15+1 ;

Var17 = CurrentBar ;

end ;

end ELSE if (CurrentBar-Var17 > WhiteBarSpacing) then Var15 = 0 ;

Var21 = Var19 Var19[1] AND Var19[1] < Var19[2] ;

if Var13 = 1 then

begin

if Var20 then if Var8 then PLOT7 (Var19*2.500000, "WaveTrend", 7) ;

if Var20 then if Var12 then PLOT1 (Var19*1.500000, "Dn Reversal", 12) ELSE PLOT1 (Var19*1.500000, "Dn Reversal", 8) ;

if (Var15 >= 3) then

begin

if (Var17 = CurrentBar) then

begin

PLOT2 (Var19*2, "Close Bars", 5) ;

if CHECKALERT then ALERT ("3 White Bars") ;

Var16 = TRUE ;

end ;

end ;

if Var21 then PLOT3 (Var19*3, "Up Reverse 2", 6) ;

if Var20 = FALSE AND Var21 = FALSE then PLOT4 (Var19, "ADX", 1) ;

if CHECKALERT then

begin

if Var21 then ALERT ("ADX Turn Alert") ;

end ;

end ;

if Var13 > 1 then

begin

PLOT10 (Var19, "ADX", 7) ;

if Var20 then

begin

Var14 = "DownReversal" ;

SETPLOTBGCOLOR (11, 8) ;

end ELSE if (Var15 >= 3) then

begin

if (Var17 = CurrentBar) then

begin

Var14 = "3 White Bars" ;

SETPLOTBGCOLOR (11, 5) ;

Var16 = TRUE ;

end ;

end ELSE if Var21 then

begin

Var14 = "Big Move" ;

SETPLOTBGCOLOR (11, 6) ;

end ELSE if Var21 then

begin

Var14 = "ADX Turn Alert" ;

SETPLOTBGCOLOR (11, 7) ;

end ELSE

begin

Var14 = " " ;

SETPLOTBGCOLOR (11, 1) ;

PLOT11 (Var14, "ADX Status", 1) ;

end ;

end ;

end ;

Thanks in advance

best regards,

 

wierdness

Having troubles with a script I made. The trouble is that if I backtest in visual mode it works fine - also works fine on an account however if I backtest it in non visual mode it doesnt trade

I was after an idea to stop the wierdness This is the offending bit of code causing it.

double Cuts()

{

int cuts = 0;

int nHH = Highest(NULL,0,MODE_HIGH,barsToCount,myShift);

int nLL = Lowest(NULL,0,MODE_LOW,barsToCount,myShift);

double high = High[nHH];

double low = Low[nLL];

double range = high - low ;

double middle = low + (range/2);

for (int cnt=0;cnt<barsToCount;cnt++)

{

double Ehlers=iCustom(NULL,0,"Ehlers - Optimal tracking filter",0,cnt);

double Ehlers1=iCustom(NULL,0,"Ehlers - Optimal tracking filter",0,cnt+1);

if ((middle > Ehlers && middle < Ehlers1) || (middle Ehlers1))cuts+=1;

}

return(cuts);

}

 
bulliz:
Thanks to mladen we got an indicator that tracks for you the last 2 emas cross up and down, I attach it.

I ask you to watch yourself what happens when the 2 ema cross on any market

or timeframe, I like it on 15 min charts.

I hope it is clear, sorry for my bad English but I'm Italian.

I would like to know your opinion about in order to improve this tecnique and why not develop a new complete strategy.

Many thanks to all

Ciao

bulliz

Hi mladen is it possible to create a channel that connects the highs of the cross and the lows of the cross?

It will be great if the channel is in the dotted form like support and resistance by barry.

Many thanks

Regards

bulliz

 
halvardu:
Hi, is it possible that someone here can make a alert to this indicator, there are different levels of alerts here but I would like to have a alert on the 3 strongest signals in both directions.

Thanks in advance

Best regards

Halvard

Are there nobody here that can make the alert on this indicator?.. PLEASE

FractalsMD_v1.mq4

 

This should work.

I coded an alarm that you can set for every level (1-4) as I was not sure what you meant...(seems mladen wanted to clarify as well)

Have not had time to test it, so let me know should it not work correctly.

Tested, and fixed alarm timing.

Cheers, San.

Files:
Reason: