ALEX AutoTradingBot INDEX

ALEX AutoTradingBot INDEX

This strategy was explained at The Forex Day in Madrid by Lex Smirnoff in 2015. I’m Adolfo so, A-LEX will be a beautiful name for it! :-). Is explained to trade it in GBP/USD in 1 hour chart.
Since I <3 indexes like DAX or DOW couln’d wait to test it. Since March I’m doing discretionary trading on both markets in a real account, with profitable results (38,12%), first trades were made with 7% risk per trade, but I’ll no longer recommend it for you or anyone, it’s crazy!

A lot of entrance were missed by my fault, just wondering about if it’s a good moment or not…. will keep rising? or not? Low confidence took me here, and finally I can share it with you, is already automated. Enjoy it!

Requirements

.ITF file: ALEX ATB Indicator Signal (Click and get it)

Indicator code:

Recomendations

3000 € / $ and max risk of 2% per trade.

Indicators

How it works

Firstly, is a simple trend following system.

Look for a fast price move in whatever direction, this movement must be longer than 45 pips from last touch with Ema8, and then a retracement touching Ema8 will fill our limit order and join the trend.

Fixed Stop ploss and target pprofit give us unreal vision of the strategy in the backtest. However I’ll keep trading it since is profitable for me since March, not as good as backtest results shows, of course… but very interesting… 😉

Why not?

CODE

Best trading ever, Adolfo.

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. avatar
    Anonymous • 06/03/2016 #

    I have tested it and gives enormus performance but it has a big issue on the backtest… 70% of the trades are closed in the first bar. this mean that we have a clear Ts that has the PRT bouncing problem.
    Have you tried to compare the real trades with the backtested? I’m quite sure that they will be totally different. Am I wrong?

  2. Adolfo • 06/03/2016 #

    Hi David, your are right, you can’t get that awesome performance, but I saw in real time how same candle touch limit order and give profit not once, even 3 times at the same bar, in 15 min, and then price goes against you. So if you look at the chart after this, you can think easily this one wasn’t a profit but is false, because inside bar gives profit 3 times (is my real example). Of course all cases are not the same… Just telling that I got a profit about +38% atm with it, since started in March.
    P.S. ATM most indexes and pairs are rdy to trade, look at this capture: http://www.prorealcode.com/wp-content/uploads/2015/07/ALEX-ATB-ProScreener-Capture.png

  3. burghy17 • 06/03/2016 #

    Hi Adolfo,
    I can’t find the 2nd indicator (ExpMA 18) in the code you posted, is it correct or not ?
    Are you using the code with real money ? the performance in the backtest is really incredible ?
    Thanks
    Andrea

    • Adolfo • 06/03/2016 #

      Hi burghy17, first question is answered below :), and yes to the second one, manually until now, automated since next week. 😉 
      Thanks for your comment, have a nice weekend!

  4. Eric • 06/03/2016 #

    Do you use EMA 18 in the code?
    Indicators
    ExponentialAverage[8](close)
    ExponentialAverage[18](close)p.s thanks for all your works It\'s appreciated

    • Adolfo • 06/03/2016 #

      Thanks for your comment Eric, it’s not in the code. But is there for one reason, and going to explain it.
      In Lex Smirnoff system, he uses ema18 to calculate stoploss, something like this:
      MinStop = 30
      MaxStop = abs(ema8-ema18)StopLoss = max(MinStop,Maxstop)
      If we wanna use a wider stoploss, we should include lines above and modify this line also:
      mylot=(((Strategyprofit+3000)*0.02)/stoploss)
      set stop ploss stoploss

  5. grizzly • 06/03/2016 #

    Thanks for sharing Adolfo

  6. minmax • 06/03/2016 #

    Hi Adolfo,
    Thank you very much for sharing your strategy, I’ve backtested it on the Dow on 15 Minute charts, assuming a 3 spread.
    From 1st March to 3rd June it was able to take 196 trades, Winning 168 (85.71%), Losing 28 with a gain/loss ratio of 2.98 with the following settings.. (apologies for re-coding into a single file for ease of use)
    defparam cumulateorders=false
    defparam preloadbars=1000
    defparam flatbefore=065500
    defparam flatafter=211450

    ema = Exponentialaverage[ts1](close)
    once uma=Highest[ts1](high)
    once umb=Lowest[ts1](low)
    objetivo=40*pipsize
    ts1=9

    if High > ema and Low < ema then // Touching Ema8
    tb = BarIndex
    ltp = ema
    uma = ema
    umb = ema
    endif

    if low>ema then // New bullish movement
    n = BarIndex - tb
    uma=Highest[n](high)
    umb=ema
    endif

    if high<ema then // New bearish movement
    m = BarIndex - tb
    umb=Lowest[m](low)
    uma=ema
    endif

    if (uma-ltp)>objetivo and uma>ema then // buy condition
    mycompra=1
    endif
    if (uma-ltp)<=objetivo then
    mycompra=0
    endif

    if (ltp-umb)>objetivo and umb<ema then // short condition
    myventa=-1
    endif
    if (ltp-umb)<=objetivo then
    myventa=0
    endif

    advance=abs(round(ema-ema[1]))
    mylot=(((Strategyprofit+3000)*0.02)/30)

    if not longonmarket and mycompra=1 then
    BuyPrice = ema+advance
    buy mylot contract at BuyPrice limit
    endif

    if not shortonmarket and myventa=-1 then
    SellPrice = ema-advance
    sellshort mylot contract at sellprice limit
    endif

    set stop ploss 25
    set target pprofit 13
     

    • Adolfo • 06/03/2016 #

      Great job!  Thx a lot for that. I’m trading this strategy on DJIA mornings with 2,8 Spread and since 15:30, 1.8 spread points and the result is good enough to continue with it.  As far as I like your improvements I will set another one with your parameters.
      Thanks again 😉

    • Doctrading • 06/03/2016 #

      Beware !
      On backtest I see an utopic equity curve, because stop loss and take profit are on some same candles. Prorealtime only takes the take profit…
      Anyway, great strategy, thanks.

    • CKW • 06/03/2016 #

      Hi Minmax,
      Is your strategy works? I think mine having issue when running on demo

  7. avatar
    Anonymous • 06/03/2016 #

    Adolfo maybe when PRT will solve the councing issue we will know better how this Ts perform. Let’s wait and see… I keep following you

    • minmax • 06/03/2016 #

      Hi David, I’ve done some tests on this strategy removing/adjusting the stop levels, the results suggest that it’s the target being hit the majority of the time.
      (I’m assuming you are referring to the issue of target/stop being in a single bar and not knowing which occurs first)
      Regards
      Steve

  8. mr.brymas • 06/03/2016 #

    Hello adolfo. Thanks for your posting.
    I just wonder one thing, with 1 contract instead of any money management system and your SL30 and your TP 25 I get really many positions that have closed in 0 bars. Are you sure that it really works?

    • Adolfo • 06/03/2016 #

       
      Hey! Who knows if we will work like this in the future? Anybody know… I trade it because got sense for me. I’m testing it right now with 10 pips stoploss and fixed profit of 100€. Results are awesome after a few months. 
      Will share any update, thanks a lot everyone!!!!!!
       

  9. Hockeytrader • 06/03/2016 #

    i changed the money management to the code that’s posted in the blog. Turns out I’m gonna be a billionaire in 10 years. 
    Jokes, gonna put it on demo account and probably make some mods.

  10. Jesús • 06/03/2016 #

    Hello Adolfo and thanks for sharing your strategy. Minmax’s code seems very interesting too, and give very good results in the backtest.
    Perhaps on a demo account their behavior is not as good as in the backtest, but the strategy is good and the codes too.
    Thanks a lot.

  11. Tradingsales • 06/03/2016 #

    hi Adolfo ,
    results looking amazing in backtest but i have been trying to get it to work on a small live account i use to test these out but when ever i change the line
    \"mylot=(((Strategyprofit+3000)*0.02)/30)\" to - \"mylot=(((Strategyprofit+400)*0.02)/30)\" forgive my ignorance but when ever i do this to try it backtest no trades are placed is there another line alsothat i must change in order for this to work ?

  12. Adolfo • 06/03/2016 #

    Hi Tradingsales, you changed 3000 to 400, this is the whole amount of capital to calculate contracts.
    400*0.02/30=0,0…. So mylot = 0
    Not even 1 contract to enter market, increade capital or risk in order to at least get 1 contract to join.
    Best regards!

  13. Sofitech • 06/03/2016 #

    As you make it work live now, how does it work for you ? Are you far from the results you have in backtest ?

  14. Nacho • 06/03/2016 #

    Muy buenas Adolfo, muchas gracias por compartir, quería hacerte una pregunta ¿Has probado el sistema en real? ¿hay mucha diferencia con el Backtest? como bien sabrás el Proorder de cada vela sólo te tiene en cuenta la apertura y el cierre y al ser velas de 1 hora, puede que te salte el stop y no quede reflejado en el Backtest. Lo he actvicado en una cuenta demo a ver que tal.
     
    Un saludo.

    • Adolfo • 06/03/2016 #

      Hola Nacho, llevo operando éste sistema en real desde Marzo de éste   año y el balance actual es positivo. Lo empecé operando con un objetivo de 50 pips hasta que conocí ProOrder, hice un backtest y vi que podría haber quebrado la cuenta a largo plazo y desde entonces he seguido con el objetivo mencionad aquí de 25 pips. 
      Un saludo y suerte!

    • Nacho • 06/03/2016 #

      Muchas gracias por la respuesta Adolfo, pero mi pregunta es ¿El sistema a través de pro order te hace las mismas operaciones desde que lo tienes activado que las que te salen si haces un Backtest? es que el Backtest es espectacular. Muchas gracias.
       

    • Adolfo • 06/03/2016 #

      Hola Nacho, no, el porcentaje de acierto es menor en real, ojalá fuera igual!!  Me refería a que está siendo rentable desde entonces y espero que siga así.
      Salu2

    • Nacho • 06/03/2016 #

      Buenos días Adolofo ¿Me podrías decir desde que lo tienes activado en marzo cuál ha sido el mayor Drowdown que has sufrido? y a cuanto el punto, supongo que lo habrás tenido mínimoa 5 € el pto no? Me estoy planteando activarlo y me gustaría saber el capital necesario.
       
      Muchas gracias.
       

    • Adolfo • 06/03/2016 #

      Hola Nacho, el peor drawdown lo pasé al principio, entonces buscaba 50 pips por operación y perdí más de la cuenta, de hecho estuvo casi todo el mes de Marzo en negativo hasta que llegó a final de mes, primeros de Abril, y encajo una serie de profits consecutivos y desde entonces se mantiene en positivo.
      Soy partidario de arriesgar lo mínimo posible en torno al 0.5 ó 1 % del total del capital para la estrategia. Tendiendo en cuenta que el stop está a 30 pips, lo óptimo podría ser un capital entre 3.000 y 6.000 €, yo la puse en marcha con 3000 €.
      Saludos!

  15. Adolfo • 06/03/2016 #

    Hi Sofitech, result for this week are: 
    DAX = 3 positions with (-30-5+25) -10 pointsDJIA = 1 position +25 points
    Binomio autotrading bot is working a bit better this week, with a result of +59,3 points on DAX.
    I’ll be updating! 

  16. Adolfo • 06/03/2016 #

    Also started another system like this (on demo) with 10 points stop and 100€ $profit, this one is incrementing size contracts in order to join with 100 contracts and just look for 1 pip. Results for this one are 2 trades, 100% winners. We’ll see.
    Best regards!

  17. Hockeytrader • 06/03/2016 #

    Been running it on demo for 48 hours and 680€ up with 5€ contracts.

  18. Adolfo • 06/03/2016 #

    Congrats!!
    Today was a great day for this strategy.
    All Profits in GBP/JPY, GBP/USD, EUR/USD, DAX and FTSE, more than one of them gave 3 profits!!
    Best wishes!!

  19. thegeneral • 06/03/2016 #

    Hi Adolfo,
                      It has an open position on the Dow currently.My question is how do i put €2 a point instead of contracts?
    Thanks

    • Adolfo • 06/03/2016 #

      Hi, do you mean each pip it’s 2€?

    • thegeneral • 06/03/2016 #

      Hi,
          Yes each pip means €2.thanks

    • Adolfo • 06/03/2016 #

      Then we should add the “PointSize” value in order to get the right contracts:
      mylot=(((Strategyprofit+3000)*0.02)/(30*PointSize))
      This will divide the whole amount of capital to risk with the number of pips multiplied by the cost of each pip.
      Hope it helps you!

  20. CKW • 06/03/2016 #

    Very Nice Strategy, Yesterday Dow Demo 2 position opened and closed with profit. The only difficult thing is to verify Demo vs Probacktest because it seems ProOrder and ProBacktest time entry and exit are different due to price order strategy. My demo executes 2 extra, where Probacktest only 1 trade, it’s probably due to spread.
    Overall, it works on Dow 15 mins!

    • Adolfo • 06/03/2016 #

      Hi, or maybe in backtest first trade was in a profit in the same candle?
      Sometimes happens in backtest, as you know…
      cheers!

  21. FRANCISCO JAVIER ZAMORA GARRIDO • 06/03/2016 #

    Hola Adolfo! Efectivamente tu sistema parecía casi perfecto en el Probacktest, pero lo he probado en tiempo real en Proorder en el Dax en 15 minutos  y tiene un fallo que hace que no me coincida la salida de las posiciones. Como se dice en comentarios anteriores, en el probacktest cierra la posición con ganancias si durante la misma vela entrada ha tocado el objetivo antes de la entrada aunque esto no ha sucedido en realidad posteriormente. Por ejemplo, esta  da entrada al alza o larga por toque de la EMA 8 a las 10 horas 29 minutos en 9723 e inmediatamente se pone a bajar hasta que salta el stop en realidad da perdidas pero en el probacktest si desde la 10 15 hasta las 10 29 en algun momento el precio estuvo a 9736.5 la posición habrá dado beneficios para la prueba. ¿la preguntas es si hay alguna forma de que Prorealtime tenga en cuenta solo lo que pase a partir del momento de la compra no el tiempo pasado? Si se pudiera solucionar sería magnifico

    • Adolfo • 06/03/2016 #

      Hola Francisco, sí efectivamente ese trade no ha dado 25 pips en tiempo real con ésta estrategia, de hecho los resultados del backtest son un poco confusos por eso, de todas formas nunca resultados positivos en el pasado garantizan los mismos en el futuro, ni lo contrario.
      Gracias por comentario, seguimos en ella, saludos!

  22. bidolia • 06/03/2016 #

     Hello, I don’t understand why this system doesn’t work in real as in backtest. Can someone can tell me? 

    • Adolfo • 06/03/2016 #

      Yes Bidolia, me neither… we should be billionaries with this backtest results. Real % expected is about 70-80%. I’m in a nicely 61% of profit trades ATM.
      Best trading ever!

  23. Hockeytrader • 06/03/2016 #

    although a long backtest of 100 000 units shows a average position length of 1 bar, this ytd its almost 3 bar as average which is good imo. I like this strategy and I’m gonna keep it running on the demo account this week too then put it in €1 contracts next week if results ar OK.
    Thanks!

  24. Adolfo • 06/03/2016 #

    Great Hockeytrader! I’m not expecting same resulta as backtest shows of course.. But good enough to keep on it.
    Testing it also with good results on GBP/JPY and bad results on EUR/USD.
    Looking for a good objective in FTSE and PXI, 45 should be adjusted for thise indexes with less pips movements.
    Best wishes for everyone!

  25. thegeneral • 06/03/2016 #

    Hi,
        Getting an error from ProRealTime.Running on Dax 15 Min.thanks
     
    This trading system was stopped because the historical data loaded was insufficient to calculate at least one indicator during the evaluation of the last candlestick. Please increase the number of preloaded bars with the instruction DEFPARAM in the code of your strategy (ex: DEFPARAM Preloadbars = 2000). For additional assistance, please refer to the help text of the DEFPARAM function in the trading systems programming manual.
     

  26. Adolfo • 06/03/2016 #

    Hi thegeneral, be sure you got this parameter.
    Defparam preloadbars = 8
     

    • fredd81 • 06/03/2016 #

      Hi 
      I keep getting the same, systems stops randomly and i need to restart, can we put more bars in your code or does 8 have some special function ? 
      thx

  27. thegeneral • 06/03/2016 #

    Hi,
        Yes this is the full code
     
    defparam cumulateorders=false
    defparam preloadbars=8
    defparam flatbefore=090000
    defparam flatafter=213000

    mycompra, myventa = CALL \"ALEX ATB Indicator\"
    ema=ExponentialAverage[8](close)
    advance=abs(round(ema-ema[1]))
    mylot=(((Strategyprofit+3000)*0.02)/30)

    if not longonmarket and mycompra=1 then
    BuyPrice = ema+advance
    buy mylot contract at BuyPrice limit
    endif
    if not shortonmarket and myventa=-1 then
    SellPrice = ema-advance
    sellshort mylot contract at sellprice limit
    endif

    set stop ploss 30
    set target pprofit 25

     

  28. thegeneral • 06/03/2016 #

    //-------------------------------------------------------------------------
    // Main code : Dax A-Lex 15 Mins
    //-------------------------------------------------------------------------
    defparam cumulateorders=false
    defparam preloadbars=8
    defparam flatbefore=090000
    defparam flatafter=213000

    mycompra, myventa = CALL \"ALEX ATB Indicator\"
    ema=ExponentialAverage[8](close)
    advance=abs(round(ema-ema[1]))
    mylot=(((Strategyprofit+3000)*0.02)/30)

    if not longonmarket and mycompra=1 then
    BuyPrice = ema+advance
    buy mylot contract at BuyPrice limit
    endif
    if not shortonmarket and myventa=-1 then
    SellPrice = ema-advance
    sellshort mylot contract at sellprice limit
    endif

    set stop ploss 30
    set target pprofit 25

    //-------------------------------------------------------------------------
    // Function : ALEX ATB Indicator
    //-------------------------------------------------------------------------
    REM Señal de compra o venta SETJU
    REM Variables
    mm = Exponentialaverage[8](close)
    once uma=Highest[8](high)
    once umb=Lowest[8](low)

    REM NOTES
    // TB = touched bar

    //if barindex<2 then
    //ltp = mm
    //endif
    // OBJETIVO
    objetivo=45*pipsize

    REM Establecimiento del último toque con la media móvil
    if High > mm and Low < mm then
    tb = BarIndex
    ltp = mm
    uma = mm
    umb = mm
    endif

    REM Establecemos nuevo maximo en movimiento alcista
    if low>mm then
    n = BarIndex - tb
    uma=Highest[n](high)
    umb=mm
    endif

    REM Establecemos nuevo minmo en movimiento bajista
    if high<mm then
    m = BarIndex - tb
    umb=Lowest[m](low)
    uma=mm
    endif

    REM Condición de entrada Largo
    if (uma-ltp)>objetivo and uma>mm then
    compra=1
    endif
    if (uma-ltp)<=objetivo then
    compra=0
    endif

    REM Condición de entrada corto
    //corto = ltp-umb
    if (ltp-umb)>objetivo and umb<mm then
    venta=-1
    endif
    if (ltp-umb)<=objetivo then
    venta=0
    endif

    REM Mostrar Resultado
    Return compra coloured(0,128,0) as \"compra\", venta coloured(220,20,60) as \"venta\"
     

  29. Adolfo • 06/03/2016 #

    I got same issue a few days ago, don’t know what the problem was and hope that someone could help us a bit more at this point.
    This is what I think, Sometimes 07:55, 07:56 or 07:57… Got no body (same open, close, high and low) and maybe at 08:00 there are no 8 full bars?
    Cheers!

  30. AleX • 06/03/2016 #

    Hi, there is some method to force the close at least 1 bar after entry? 

  31. Adolfo • 06/03/2016 #

    Hi Alex, you can avoid “PPROFIT” and use something after “LONGONMARKET”, this condition will wait until first bar closes, but if profit is reached in the same candle you won’t get it. I tryed something like this before and didn’t like it.
    Best regards!

  32. Johan Holmberg • 06/03/2016 #

    Really interesting Adolfo! Can you please explain what “30” is, in the lot size / risk management line:
    mylot = min(1000, (((Strategyprofit + 3000) * 0.02) / 30))

    • Adolfo • 06/03/2016 #

      Hi Johan,
      I didn’t use this time any variable to calculate stoploss, are a fixed 30 pips, so this number is equal to stoploss pips distance.
      Cheers!

    • Johan Holmberg • 06/03/2016 #

      Ah ok of cause 🙂
      Have you thinked about how this can be applied on timeframes like 15, 5, 1 min? The update which aims for $100 with 1 pip sounds really interesting. Any news on that one?
      Thanks again!

  33. Adolfo • 06/03/2016 #

    Yes! will be interesting to get the best parameters for those timeframes, didn’t do yet.
    I started this week a few systems on different pairs and indexes with those parameters and doesn’t look as interesting as expected from now, we’ll see.
    Cheers!

  34. Pierreee • 06/03/2016 #

    Hey, Thanks for sharing.
    This strategy doesn’ execute any order in my backtest (i have installed the indicator and the strategy).
    What should I do with  : 
    ExponentialAverage[8](close)
    ExponentialAverage[18](close)
     
    Is it working only on 10.2 ?
    Is it working with the demo (i have the demo)
    Thanks

  35. Adolfo • 06/03/2016 #

    Hi Pierreee, should work in intraday timeframes correctly in 10.2 version.
    Nothing extra to do with Exponentialaverage.
    Best regards!
     

  36. Johan Holmberg • 06/03/2016 #

    Hey Adolfo,
    I’m currently running the system on my IG Demo account with 1 lot, 30 ploss and 25 pprofit. This morning the first trade kicked in. A long trade at 09:04:28, which the system got out of at 09:31:33 with a 64,10€ win. how is that possible with a 25 pprofit?
    Thanks!

    • Nicolas • 06/03/2016 #

      It depends on “mylot” calculation, which compute your exposure for each trade.

  37. fredd81 • 06/03/2016 #

    My Systems drops out constantly and whines about Defparam preloadbars=8
    I have four systems with diffrent tp/sl settings and all drops out now and then

  38. CKW • 06/03/2016 #

    Hello,
    After I done a week of Demo Live and P.Backtest. It doesn’t work as live case.
    In P.Backtest, the entry price is correct but entry time is incorrect(1). The exit price (2) and exit time (3) are both incorrect.
    From my observation, I “suspect”:
    (1) The entry time is determined based on the moment coding execution of “Buy” which normally starting of the candle (i.e 9.am). It’s not accordance to Live (i.e 9.15am)
    (2) If target limit & stop loss both should be reached in 9am – 930am candle. This will be treated as winning trade as limit will be hit earlier due to limit amount is smaller than stop loss and system assume your position is opened at 9am. (Not 9.15am). Losing trade is low %, this only happen when we buy at very high price / U turn.
    (3) Not so important.
    Above explains why the equity curve shows beautiful result when target limit is smaller number than stop loss. By the way, it’s just why assumption. Hope P.Backtest can improve this. Otherwise, it’s difficult to examine the “real” result. 

    • Nicolas • 06/03/2016 #

      (1) BUY and SELL orders are pending LIMIT order which can trigger at any time after they were put on market. So this is possible that trade can be executed on market at 9.15am if the price didn’t reach their trigger price before this time. But I understand that you are talking about probacktest behaviour. This is something that will be improved in a future release.
      (3) this is what Adolfo say about this in his description : “Fixed Stop ploss and target pprofit give us unreal vision of the strategy in the backtest. However I’ll keep trading it since is profitable for me since March, not as good as backtest results shows, of course… but very interesting… 😉 “

  39. nuam1601 • 06/03/2016 #

    Hi Adolfo, great job! 
    I tested your trading system for two weeks at the market (demo account) and I found these differences with the backtesting: 1) the backtesting performances are amazing because of well-known PRT platform miscalculation that merely  consider just the OHLC values without considering the time factor (I hope PRT thinks up a way of solving this problem as soon as possible, because this defect makes the platform less competitive than the others):  this error implies that the pending order carried out to the market by the TS is almost always different from the order executed in the back-testing, where the entrance to the market is almost always on the same candle of the entrance signal. That’s why there is a performance difference between backtest and “market”, because often in the market the order is not immediately executed, and when done, the rebound phase from the retracement  is completed bringing the TS to close in loss position. This is a PRT defect  in the backtest I hope they solve immediately, otherwise it will make no sense to perform backtesting because too far away from reality.
     
    2) Another problem I found is a delay of the trading system to follow the indicator. It happens like this: suppose a condition long on Dax TF 15M; at the opening of the new candle Alex ATB indicator changes from 0 to 1, then mycompra = 1 and according to the buy  conditions  the TS must place an order at buyprice limit. However this does not happen in real, since at the opening of the new candle Alex ATB indicator changes from 0 to 1 and the system waits for the development of another candle before place the order (another difference with backtest that, instead, open the position on the same candle where Alex ATB indicator goes to 1). How can I solve this problem? I downloaded the TS and I applied it to the graph without changing any parameter.  I find this TS a good idea, and I hope that my tests can help to improve it.

  40. Bandido • 06/03/2016 #

    Hello everyone, and thanks Aldolfo.
    What do you think of this code, to avoid the stop loss / take profit problem???
    if not longonmarket and mycompra=1 then
    BuyPrice = ema+advance
    buy mylot contract at BuyPrice limit
    endif

    if longonmarket and low < (buyprice-25) or high >(buyprice+13) then
    sell at market
    endif

    if not shortonmarket and myventa=-1 then
    SellPrice = ema-advance
    sellshort mylot contract at sellprice limit
    endif

    if shortonmarket and high > (sellprice+25) or low <(sellprice-13) then
    exitshort at market
    endif
     

    • Bandido • 06/03/2016 #

      Excuse me, i have lost some parenthesis….
      if not longonmarket and mycompra=1 then
      BuyPrice = ema+advance
      buy mylot contract at BuyPrice limit
      endif

      if longonmarket and (low < (buyprice-25) or high >(buyprice+13)) then
      sell at market
      endif

      if not shortonmarket and myventa=-1 then
      SellPrice = ema-advance
      sellshort mylot contract at sellprice limit
      endif

      if shortonmarket and (high > (sellprice+25) or low <(sellprice-13)) then
      exitshort at market
      endif
       

  41. luigiR • 06/03/2016 #

    @adolfo
    hi Adolfo , Thanks for sharing your strategy, it’s really well done…
    a question for you
    I would to try to launch your strategy in real , but can you explane me what I must do to buy only 1 contract?
    thanks again and I hope in your reply, Bye 

  42. AleX • 06/03/2016 #

    mylot=1

  43. nuam1601 • 06/03/2016 #

     Ciao LuigiR fai come dice Alex e modifica la riga 9 del codice scrivendo mylot=1 ; la riga 9, così come è scritta originariamente nel codice, impiega il 2% del capitale aumentando o diminuendo il numero dei contratti in base allo strategy profit, modificandola come dice Alex invece, aprirà ogni volta una posizione con un singolo contratto indipendentemente da quanto è in guadagno od in perdita la strategia.

    • luigiR • 06/03/2016 #

      grazie a tutti e due ‼️

  44. AleX • 06/03/2016 #

    How are your tests? on which indices will show that the strategy is profitable than DAX and GBP / USD?For me demo test three weeks on DAX 54% profitable, GBP/USD 60%. 
    Thanks

    • Hockeytrader • 06/03/2016 #

      Been going live with Dax €5 contracts since 14th of June. Result isn’t bad but not extreme. 312€ in profit with 53,57% in wins and 1,04 in Gain/loss ratio.

    • luigiR • 06/03/2016 #

      hi Alex, I try in real with some pair of forex, best result are in GBP/USD with 80% of  winning trade for the last week, this week down  to 60%

    • Fabio Anthony Terrenzio • 06/03/2016 #

      Che timeframe?

  45. JOHNSTON • 06/03/2016 #

    Hi,Can we adapt this strategy to the equity markets?She can operate daily on the stock markets?If so, does it work as well as for currencies and indices markets?Thanks

  46. Tobias A. Fringel • 06/03/2016 #

    The Strateg will don´t work complete in the IG ProRealTime Demo Account. ProBacktest work perfekt in Backtest & Backtest Livemode, but it will be not execute any Orders in the Demo enviroment – any ideas why? (now i have disable the mylot calculation, let’s see what happens)
    regards

  47. criscolci • 06/03/2016 #

    Hi Adolfo, I added an oscillator in your code and it seems work better in every market…I’ve changed also TP and SL.
    Ehi forum, what do you think?

    if not longonmarket and Momentum[10](close)>0 and mycompra=1 then
    BuyPrice = ema+advance
    buy mylot contract at BuyPrice limit
    endif

    if not shortonmarket and Momentum[10](close)<0 and myventa=-1 then
    SellPrice = ema-advance
    sellshort mylot contract at sellprice limit
    endif
     

  48. criscolci • 06/03/2016 #

    oh I forgot…
    set stop ploss 45
    set target pprofit 25
     
     
     

  49. miguel33 • 06/03/2016 #

    Beh i risultati in backtest a due anni sono … Incredibili.
    Complimenti.

  50. criscolci • 06/03/2016 #

    …se vuoi incrementare il win/lost ratio aggiungi una condizione anche sul’ RSI… 

  51. miguel33 • 06/03/2016 #

    Hai già trovato una condizione ottimale da inserire su Rai ?

  52. miguel33 • 06/03/2016 #

    scusa. Volevo scrivere. RSI .

  53. criscolci • 06/03/2016 #

    ecco qua
    if not longonmarket and Momentum[10](close)>0 and RSI[10](close)>65 and mycompra=1 then
    BuyPrice = ema+advance
    buy mylot contract at BuyPrice limit
    endif

    if not shortonmarket and Momentum[10](close)<0 and RSI[10](close)<35 and myventa=-1 then
    SellPrice = ema-advance
    sellshort mylot contract at sellprice limit
    endif

    set stop ploss 30
    set target pprofit 15
     

  54. criscolci • 06/03/2016 #

     
    e a questo punto puoi aumentare il rischio del money management
    mylot=(((Strategyprofit+3000)*0.03)/30)
     

  55. Pjotterd • 06/03/2016 #

    Hi all, I would like to start with this strategy. Which timeframe should I use for DAX?

  56. miguel33 • 06/03/2016 #

    In base alla vs. Esperienza è più corretto avere un  ratio alto , una % più alta di tarde vincenti o un guadagno maggiore.
    Di co questo perché variando i valori di stop loss e profit si ha n ratio decisamente più basso ma guadagni decisamente più alti. ( in backtest )

  57. miguel33 • 06/03/2016 #

    Comunque in backtest ingressi ed uscite sono fatti nello stesso momento (orario) 
    cambia da quelli fatti in reale pertanto la performance è poco credibile. 
    In effetti sembrava troppo facile. 🙂 
     

  58. AleX • 06/03/2016 #

    Pay attention. The original strategy have some BIG problems. 
    The biggest one is backtest, the results is not REAL cause probacktest open and close positions in the same candle, then you cant know if stopprofit was taken before stoploss and viceversa. DO NOT LOOK BACKTEST ON THIS STRATEGY!!!!! I’m on demo from start and the reults is not so good… DAX is not profitable, have a 50% winrate then with a take profit of 25 and a stop of 30 you will loose money. All the other index or forex pairs that i tested is not good (jpy/usd, greece, italy, wall street, dax, ftse, cac, eur/usd, spain) this original strategy work, for me, only on GBP/USD with a good 65-70% profitable positions. 
    From 3 weeks I’m testing a modified version, if will be profitable more than original version I will share.
    Any one, have some results to share with the others on demo-real test?
    @miguel:  questa è una comunity internazionale, secondo la mia opinione, potresti utilizzare google translator per scrivere in inglese i tuoi pensieri senza obbligare altri a farlo al posto tuo. 

  59. miguel33 • 06/03/2016 #

    Perfect was what I thought. We try to find a real solution. thank you .  
    Miguel
     

  60. criscolci • 06/03/2016 #

    Hi Alex,
    I’m agree with you. My approach to the backtest is like a chemical reaction, where you have a lot of varible that could change the results you have dreamed. In fact it is important to monitor how real differ from backtests, in order to add a own “deviation standard” of future projections. For me it’s important to share ideas for improving the efficency and the return of the code.
    Now I’m testing various modified code on real tests on 3 mini forex, FTSE, Wall and germany30… Let me 1 month of comparison for sharing

  61. aldik67 • 06/03/2016 #

    Although I tried many times to me the system fails in this type of error.“The trading system was shut down because the program has used a negative offset or equal to 0 (ex: close [-10]) during the evaluation of the last candela. La Please add more protection to its pre code prevent negative offset or equal to 0 “.I tried to figure out where he might be the error but did not succeed.Can you help me, thanks.

  62. Mat_CH • 06/03/2016 #

    Hi Aldik67,
    check the variable ts1=9. Need to be before the usage like this:
    ts1=9
    ema = Exponentialaverage[ts1](close)once uma=Highest[ts1](high)once umb=Lowest[ts1](low)objetivo=39*pipsize
    Mat

  63. Mat_CH • 06/03/2016 #

    Hi Adolfo, Hi all user ProRealCode,
    First thanks Adolfo for sharing your strategy, very good.
    Do you know if is solved the problem of stop loss/take profit? Is real the strategy place the order but without stoploss and takeprofit.
    Thanks
    Regards
    Mat

  64. ALEALE • 06/03/2016 #

    Hello guys someone can rewrite strategy for 1 minute’s candles to test IT in 1 minute time frame?

  65. Pjotterd • 06/03/2016 #

    Hi all, do we have a solution for the problem with the error (defparam preloadbars=8) proorder gives while running the system live?

  66. Jan Karlsson • 06/03/2016 #

    hi
    is the file updated with the new paraments

  67. Tom Hoo • 06/03/2016 #

    What does this error msg means. 
    This trading system was stopped because the program used a negative or zero offset (ex: close[-10]) during the evaluation of the last candlestick. Please add protections to your code to prevent negative or zero offsets.
    My auto trading system close itself off because of this

  68. Robert24 • 06/03/2016 #

    Hallo 
    Schöner Code..Ich habe das gleiche Problem wie mein Vorredner Beim Backtest ist alles in Ordnung aber beim Demo kommt die Fehlermeldung:
    This trading system was stopped because the program used a negative or zero offset (ex: close[-10]) during the evaluation of the last candlestick. Please add protections to your code to prevent negative or zero offsets.
    Mein Code:
    defparam cumulateorders=falsedefparam preloadbars=8defparam flatbefore=065500defparam flatafter=211450
    ema = Exponentialaverage[ts1](close)once uma=Highest[ts1](high)once umb=Lowest[ts1](low)objetivo=39*pipsizets1=11
    if High > ema and Low < ema then // Touching Ema8tb = BarIndexltp = emauma = emaumb = emaendif
    if low>ema then // New bullish movementn = BarIndex – tbuma=Highest[n](high)umb=emaendif
    if high<ema then // New bearish movementm = BarIndex – tbumb=Lowest[m](low)uma=emaendif
    if (uma-ltp)>objetivo and uma>ema then // buy conditionmycompra=1endifif (uma-ltp)<=objetivo thenmycompra=0endif
    if (ltp-umb)>objetivo and umb<ema then // short conditionmyventa=-1endifif (ltp-umb)<=objetivo thenmyventa=0endif
    advance=abs(round(ema-ema[1]))mylot=(((Strategyprofit+3000)*0.02)/30)
    if not longonmarket and mycompra=1 thenBuyPrice = ema+advancebuy mylot contract at BuyPrice limitendif
    if not shortonmarket and myventa=-1 thenSellPrice = ema-advancesellshort mylot contract at sellprice limitendif
    set stop ploss 35set target pprofit 19
    Danke für die Hilfe..
     

  69. torkelab • 06/03/2016 #

    Hi Adolfo,
    Any luck with the modified version of this strategy?
    The 50% winrate, was that since March on a live IG account?
    “GBP/USD with a good 65-70% profitable positions.” was that also from March on a live account? 
    I´ve been running it with DJI 2 mini with different time intervals quite successfully, that is, until yesterday when the systems showed a loss of 320 euros.
    It would be interesting to see a back test on this strategy on a different platform without the PRT error. Has anyone seen some results from Lex strategy backtested in for eg, MT4?
    Best Regards
    Tim

  70. finplus • 06/03/2016 #

    Good morning,
    I have tried the code in real with pro realtime (broker : IG market). used timeframe is 1 hour. The issue is that when the hour changes (for instance 4 Am, 5 AM,….), the system stops with the following message : “your system used a negative offset or 0 (ex : close [-10]. please modify your code and use positive strictly offset”. Does anybody have an idea to fix this problem? Thanks.

  71. finplus • 06/03/2016 #

    GraHal, 
    thanks for your prompt answer. OK. I have replaced 40 by 39. I have launched Alex ATB Stratégy  with my real account on euro dollar (one hour time frame). I will give more information about that later.

  72. finplus • 06/03/2016 #

    Hi, at 2 PM, the system has stopped the bot with the following message : negative offset or O…

  73. finplus • 06/03/2016 #

    GraHal, it works fine. Thanks. I am going to check in my real account. 

  74. Michael • 06/03/2016 #

    objetivo=39*pipsize  replace thats it ? nothing more ?

  75. finplus • 06/03/2016 #

    ts1=9
    ema = Exponentialaverage[ts1](close)once uma=Highest[ts1](high)once umb=Lowest[ts1](low)objetivo=39*pipsize
    Like this, it is ok. 

  76. Michael • 06/03/2016 #

    great thanks ,
    but the same errormessage occours for the system mgc-trend-chaser-160914.itf , could you have a lookon it .

  77. finplus • 06/03/2016 #

    I do not use trend chaser.

  78. DonDollar • 06/03/2016 #

    Hi there,
    thanks for the strategy and the nice ideas. I have a question about the commands NEXTBAROPEN and TOMORROWOPEN (depending on timeframe). Why are these not helpful to reduce the inside-bar problem? 
    If you are in a 15 Min timeframe and you add the NEXTBAROPEN command behind your close order, wouldn’t PRT close the position on the opening of the next candle/bar?
    Rgds,
    DonDollar

  79. mbaker15 • 06/03/2016 #

    Has anyone been running this strategy in live mode? What are the results?
     
    Mark

  80. Master_Code • 06/03/2016 #

    Je ne comprends pas. Le backtest est très mauvais avec l’option tick by tick
    Quelqu’un peut m’expliquer ?
    Oui, j’ai testé en réel. Je suis à 18% de performance depuis 3 mois.
    Merci

    • Nicolas • 06/03/2016 #

      Sûrement que la comparaison contrat CFD et contrat Futures est difficile à faire 🙂 , compare les instruments, ce ne sont pas les mêmes !

    • Master_Code • 06/03/2016 #

      En fait, la comparaison est faite toute choses égales par ailleurs. C’est-à-dire que en restant sur le même produit CFD ou contrat Futur, je fais tourner le backtest sans le tic by tic puis avec le tic by tic. Les résultats avec le tic by tic est si mauvais, qu’il en est inquiétant. Heureusement, en réel, je suis tout de même gagnant.

    • Nicolas • 06/03/2016 #

      Il n’y a pas de CFDs disponible chez prorealtime.com

  81. finplus • 06/03/2016 #

    J’ai testé la semaine dernière sur la paire AUD/USD durant une journée en réel sur IG. Résultat : aucune position prise durant la journée. or, le soir, j’ai fait tourné en back test et là j’avais une position prise à 11h avec un gain à la clé. 

  82. Master_Code • 06/03/2016 #

    Moi, ce type de situation m’arrive très souvent, mais en pire, c’est-à-dire que je suis en perte dans le trading réel, et en gain dans le backtest. Je peux faire un retour d’expérience sur le réalisé manqué si cela intéresse quelqu’un.

  83. Master_Code • 06/03/2016 #

    Pour répondre à Nicolas, d’il y a 2 jours, j’ai dû testé sur le contrat Futur, avec et sans le mode tic by tic. 

  84. finplus • 06/03/2016 #

    Pourtant, en back test, les résultats sont excellents. Donc, je pense que le code a un potentiel mais nécessite toutefois quelques réglages. Mais je n’ai pas le temps de m’y coller. Peut-être son créateur…

  85. joshali • 06/03/2016 #

    Hi 
    can anyone please help me to correct this code as 
    after getting very good results on back testing i tried with real money but my system was stopped and got error. 
    This system was stopped because the program used a negative or zero (ex:close[-10]) during the evalution of the last candlestick. please add protections to your code to prevent negative or zero offsets. 
    what changes i should made. 

  86. finplus • 06/03/2016 #

    Hi Joshali,
    set your parameters as indicated below :
     
    ts1=9
    ema = Exponentialaverage[ts1](close)once uma=Highest[ts1](high)once umb=Lowest[ts1](low)objetivo=39*pipsize
    Like this, it is ok.
     

  87. joshali • 06/03/2016 #

    thanks for your reply Finplus. 
    i was back testing this code below on 3 hour chart and results are very good. 
    i checked the correction that you have sent but it looks same. 
    please advice any error on this. 
     
    defparam cumulateorders=falsedefparam preloadbars=1000defparam flatbefore=065500defparam flatafter=211450
    ema = Exponentialaverage[ts1](close)once uma=Highest[ts1](high)once umb=Lowest[ts1](low)objetivo=40*pipsizets1=9
    if High > ema and Low < ema then // Touching Ema8tb = BarIndexltp = emauma = emaumb = emaendif
    if low>ema then // New bullish movementn = BarIndex – tbuma=Highest[n](high)umb=emaendif
    if high<ema then // New bearish movementm = BarIndex – tbumb=Lowest[m](low)uma=emaendif
    if (uma-ltp)>objetivo and uma>ema then // buy conditionmycompra=1endifif (uma-ltp)<=objetivo thenmycompra=0endif
    if (ltp-umb)>objetivo and umb<ema then // short conditionmyventa=-1endifif (ltp-umb)<=objetivo thenmyventa=0endif
    advance=abs(round(ema-ema[1]))mylot=(((Strategyprofit+3000)*0.02)/30)
    if not longonmarket and mycompra=1 thenBuyPrice = ema+advancebuy mylot contract at BuyPrice limitendif
    if not shortonmarket and myventa=-1 thenSellPrice = ema-advancesellshort mylot contract at sellprice limitendif
    set stop ploss 25set target pprofit 13

  88. Alco • 06/03/2016 #

    Am I the only one who is getting the best backtest results with 30min tf?

  89. DonDollar • 06/03/2016 #

    @joshali,
    I tested the system with the 10.3 and the tick mode in the 3h timeframe for the DAX30 and the result was…I lost 2,45% and a win ratio of 0,8. I tested with the maximum of the 500 units you can use. 
    @Nicolas: could you please run the same test with the same settings to see if there is something wrong.
    BTW: without tick-by-tick it would be marvelous !!!

    • Joachim Nilsson • 06/03/2016 #

      Hey! 
      Would you be able to test in the 15m timeframe?

    • Joachim Nilsson • 06/03/2016 #

      … and maybe this code adjusted for 5m in 5m timeframe?
      defparam cumulateorders=false
      defparam preloadbars=8
      defparam flatbefore=090000
      defparam flatafter=213000

      mycompra, myventa = CALL \"ALEX ATB Indicator\"
      ema=ExponentialAverage[24](close)
      advance=abs(round(ema-ema[3]))
      mylot= 1
      //(((Strategyprofit+3000)*0.02)/30)

      if not longonmarket and Momentum[10](close)>0 and mycompra=1 then
      BuyPrice = ema+advance
      buy mylot contract at BuyPrice limit
      endif

      if not shortonmarket and Momentum[10](close)<0 and myventa=-1 then
      SellPrice = ema-advance
      sellshort mylot contract at sellprice limit

      endif
      set stop ploss 40
      set target pprofit 25

       

  90. wanjpt • 06/03/2016 #

    hi, thanks Adolfo for this code.. is there anyone who has been trading this live? I started this week after few adjustment .. will let you guys know how it goes..

    • Alco • 06/03/2016 #

      Hi wanjpt,
      I did a lot of backtests with different tf’s but when you look at the “0” bars it is not reliable enough. Did you make some adjustements to avoid 0 bars?

  91. wanjpt • 06/03/2016 #

    Hi Alco,
    Sorry for late reply, I had error message and tried  the objectivo on 45, 39 and 40 but still having the error..wonder if there is anyone who has found  a way to resolve this.

  92. wanjpt • 06/03/2016 #

    Hi Finplus is your live account working out ok?

  93. finplus • 06/03/2016 #

    Hi Wanjpt, I tried once only on AUD / USD in november 2016 during one day. No position has been taken on my live account (IG). The issue is that when I came back home, I have backtested the strategy and one position has been taken. I do not understand this difference.

  94. finplus • 06/03/2016 #

    The backtest of the code works perfectly with 1 hour timeframe.

  95. CN • 06/03/2016 #

    Anyone got a correct code for the setup?Used Minihax code with mixed results… Anyone that can vouch for a setup that works live fairly good?
    /CN

  96. morgan89 • 06/03/2016 #

    Bonjour,
    Quelqu’un a-t-il réussi a avoir de bons résultats avec cette stratégie en backtestant en tick par tick ?
    Si oui, sur quelle unité de temps avec quel support (Dax, Cac, Forex, …) ?
    Merci

  97. finplus • 06/03/2016 #

    Bonjour, j’ai retesté hier sur la paire AUD/USD timeframe 1 heure sur mon compte réel chez IG: aucune position n’a été prise. Pourtant, ce matin, en effectuant un back test, le résultat indique qu’une position longue a été initiée à 17h puis clôturée sur la même heure avec un gain de 26 pips. Même constat qu’un de mes posts précédents. je ne sais pas à quoi cela est dû. Dommage car en back test, les résultats sont excellents. Si j’ai un peu de temps, je vais essayer de décortiquer la stratégie “pas à pas”. Bonne journée.

  98. finplus • 06/03/2016 #

    Bonsoir, j’ai de nouveau aujourd’hui lancé la stratégie en réel sur mon compte IG sur la paire AUD USD time frame 1 heure. Aucune position de prise. Pourtant je viens de backtester la stratégie et là deux opérations ont été effectuées (un long et un court). Je ne comprends pas ce qui se passe.

  99. AleX • 06/03/2016 #

    0 improvments, I tried a lot of modified version but no one was working. I think that only with a martingala this system can be good with a lot of risk. 

  100. Fabio Anthony Terrenzio • 06/03/2016 #

    this strategy works only in a well defined trend

  101. brosly • 06/03/2016 #

    Good afternoon I am trying to get the complete code of lex strategy made by adolfo since I see here does not work for me. I thank you in advance.
    Buenas tardes estoy intentando conseguir el codigo completo de la estrategia de lex realizada por adolfo ya que veo por aqui no me funciona. Os doy las gracias de antemano.
     

  102. dreif123 • 06/03/2016 #

    hi Adolfo,
    is Alex Auto Trading Botindex working on DAX as well ?
    if so , can you post the full code? thx for the support  !

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar

+49 more likes

Related users ' posts
Gaspare Ciao Ivan si puo' inserire una strategia su questo indicatore per ottimizzare le variabil...
Iván
2 weeks ago
groelandes Cuando te descargas el fichero itf, en su código no aparece toda la configuración de alertas...
Iván Si lo descargas e importas en tu PRT verás que se han creado las variables para luego config...
P. Marlowe Quite an impressive work, Iván. Extremely useful and accurate. Congratulations. Keep it up¡
lkiklkik i love it !!! thanks.
Stenozar Hi Ivan, can you translate from tradingviwe the EMA TREND METER INDICATOR? It couid be inte...
Iván Hi Yes I can. Please, create a new topic for that I will translate it.
Stenozar Hi Ivan, I've created a new topic about the indicator: https://www.prorealcode.com/topic/ema...
Doddge Hola Iván, ¿sería posible crear un screener que indique cuándo las velas coloreadas del indi...
RTR Ivan thank you for the pro-screener. I a trying to understand how to write the signals from ...
Iván Hi, Lines 62 and 63. These lines define buy and sell conditions.
Iván Hi You should delete from the indicator code all drawing functions and all variables not us...
Iván I've created a screener to show [longcondition or shortcondition]
Chrisinobi Hallo Ivan, Danke das ist Perfekt !! Kannst du bitte in der Screener-Bibliothek die itf. hoc...
MaoRai54 Thanks, now it's OK. in your first code at line 15-16 it's missing.
Madrosat Hello Ivan Did you try a strategy with this indicator
Iván Hi. No I didn't. This is a code translation requested by an user a few days ago.
Iván
2 months ago
cjr30 Simplemente modifica las lineas 19 y 21 por las siguientes: drawtext("▲",barindex,low-0.1*a...
groelandes Gracias!!
WhyAskOZ i copied the code into strategy and it gives error on line 21 and 23. it says " Line 1: ...
Iván
2 months ago
Madrosat Hello Ivan You have interesting topics on indicators , smart supertrend, optimised trend t...
Iván Hi! thanks. All of these codes are translations requested in the forum. I've on mind to back...
Raspete01 Buenos días Iván, estoy intentando llevar el código eliminando los colores y pasando un Back...
Iván
3 months ago
ARLEQUIN49 Hello Ivan, Would it be possible to convert the code of this QQE MOD indicator which accomp...
ARLEQUIN49 here is the code: //@version=4 //By Glaz, Modified // study("QQE MOD") RSI_Period = i...
Iván Hi, Yes I can translate it but please, create a new topic for it.
Fgats quelques explications en Français ici : Some explanations in French here : https://www.p...
Nicolas Merci pour cette contribution, j'apprécie ! :)
Fgats Merci Nicolas pour ces encouragements et merci aussi pour le commentaire en Anglais accompa...
jacquesgermain Bonjour non pas de soucis car src=customclose donc dans le menu configuration/propriété me...
geroniman Merci Jacques , indic tres utile. J'ai un indic à programmer avec du price action. es tu dis...
jacquesgermain ok pour regarder ...
Alai-n I really like it when you develop ideas around price movement! I am much less a fan of all t...
elcortijoverde Muy buen trabajo.Intuitivo y claro.Gracias por tu dedicación y aportación.
Ciccarelli Franco Hai ragione, mi dava valori alti perchè usavo questo loss "SET STP LOSS 1xAverageTrueRange{1...
YvesRobert Hello davidelaferla, how do you put a stop loss and where exactly ? the moment you enter on ...
Hypersimo Buongiorno Davide a quale distanza inserire stop loss e tp nella strategia? grazie
Nicolas
9 months ago
B-Xtrender
B-Xtrender
7
Indicators
Fgats I suspected something like this but in the PRT documentation I couldn't find anything to exp...
616248 Bonjour Nicolas, Peux tu nous expliquer le principe de fonctionnement ? Ou nous mettre un...
Nicolas Le lien vers l'article IFTA de l'auteur est dans le post déjà :)
JS
9 months ago
Trendilo
Trendilo
0
Indicators

Top