ROCK CLIMBER

ROCK CLIMBER

Hello, I want to share this strategy of Semi Swing Trading on DAX 4H

It includes a non-conventional PSAR setup, an RSI and 1 simple moving average. Only for Longs looking for brief small trends.

WF with 100000 bars attached.

Any suggestions to improve ratio win/loss or % of wins are always welcome =D

 

 

Best T.

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. JM • 08/30/2017 #

    Hello David, thanks for your strategy !!
    I have a question on your code, can you explain me the condition below :
    (xOpen > xClose and XHigh-XOpen and XLow < Xclose)
    I don't understand the condition XHigh-XOpen ?
    Do you want to test XHigh < XOpen ??
    I improve your stategy with a trailing stop but the performance is less but with a better drawdown !
    Regards.
    JM

  2. David Somogyi • 08/30/2017 #

    Hello JM, thanks for your comment.

    Actually i should have name it XMid instead of Xopen. xHigh means Highest value in the set, while xMid means Midpoint of the previous bar. XMid = [xOpen(Previous Bar) + Close(Previous Bar)]/2
    Also, an upper bollinger band crossing over close instead of PSAR works too as an exit.

    Regards

  3. JM • 08/30/2017 #

    David thanks for your return and your explication !
    But I have a problem of interstand the logical sequence of programmation : “XHigh-XOpen” -> this must be equal at 1 or 0 in the condition if …. ??
    Anyway perhaps I have to search in the ProBuilder language…
    Do you have test this strategy in real mode with the DAX ?
    I want to test with my IG account with CFD.
    Regards.

  4. David Somogyi • 08/30/2017 #

    JM,

    Actually you can remove that part of the code. Look at below:

    //ROCK CLIMBER DAX 4 HR
    defparam cumulateorders = false

    Positionsize = 2
    //MyPSAR = SAR[0.09,0.03,0.2]

    If BarIndex = 0 then
    xClose = TotalPrice
    xOpen = Open
    //xHigh = max(High,max(xOpen, xClose))
    xLow = min(Low,min(xOpen,Xclose))
    ELSE
    xClose = Totalprice
    xOpen = (xOpen[1] + xClose[1])/2
    //xHigh = max(High,max(xOpen, xClose))
    xLow = min(Low,min(xOpen,Xclose))
    ENDIF

    MyRSI = RSI[7](close)

    If MyRSI crosses over 60 and close> Average[25] then
    Buy Positionsize contracts at market
    ENDIF

    If LongonMarket and (xOpen > xClose and XLow < Xclose) or BollingerUp[7] crosses over close then
    Sell at market
    ENDIF

    set stop loss 80

    No, I currently don't have this system in my real portfolio but it is a good candidate.

  5. JM • 08/30/2017 #

    David,
    Thanks a lot and next week I begin the test of this strategy in real…
    You have other strategy in real account better then that one ??

  6. rejo007 • 08/30/2017 #

    hello david,
    i’ll try it
    could you tell me wich strategy do you use in real?
    thanks

  7. David Somogyi • 08/30/2017 #

    Hello,

    I have a couple of DAX strategies of breakout and mean reversion. I’ll try to post them later on.

    Regards,

  8. Roberto Blázquez • 08/30/2017 #

    Hi David, I just saw your strategy and it’s good!!! I’m going to try it from today in real and I’ll tell you. I’ve also tried it on the Dow Jones and it also works very well. I know this post is from many years ago but it’s great that to this day it keeps working. Thank you so much for this job.

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Exalaxe Hey, i just noticed you optimized this strategy. Could i see your new version, please?
Andrea.1981 sorry i add my code but it not enter why i dont know
Andrea.1981 this is code simply stop , and you can see another version for stop / Codice principale...
AntoGH how did you backtest it ?
PastaPesto @AntoGH , I dont know if you are asking me, but my backtest was made in an IS of 4 years bet...
Ridder @PastaPesto Do you still running this and how is the results? Thanks
Vonasi There is another version of this indicator that can plot the same lines but onto an indicato...
Martin35 Hello Vonasi, do you think it is possible with PRT to code with the same principle as on thi...
avatar
unkown ;-) sfido chiunque a riuscirci!
avatar
unkown infatti basta leggere i post degli altri....
nicola papangelo ciao Francesco vorrei contattarti su facebook o in privato. Grazie
dau710 Are the Bulls Blue & the Bears Red?
dau710 Many thanks :)
hartgeld Hallo Atxeel, sehr interessanter Code, habe das installiert und funktioniert. Danke! Kannst ...
atxeel Hallo hartgeld, die Ziele sind schlicht, bspw. die Range beträgt 10 Punkte, dann ist das Zie...
Maik2404 wie kann ich den Code bekommen Paul?
jens_kittner Works with US Crude at 1h as well!
Jean-Claude REGIS Je préconise de regarder les graphiques H1 et M15 pour visualiser la tendance de fond et d'...
Leo I don't know, I just copy paste the strategy. The optimisation of the values I wrote them in...
bertrandpinoy hello Leo I'm spending time on your strategy code. do you agree to try to include this code ...
bertrandpinoy //version a: ajout filtre MM defparam cumulateorders=false // --- paramètres taille =...
capgros Bonjour @Nicolas, Thanks a lot for this tool, it is very useful for me. I would like to s...
Hans63 Would you add the possibility to color also the Heikin Ashi and bar chart?
Nicolas That's possible, please open a new topic in the indicator forum explaining what you need exa...
Nicolas Change line 62 with: drawcandle(flup,fldn,flup,fldn) coloured(169,169,169,80) bordercolor(16...
DimKar Thank you very much from Greece sir , have a nice day ....!!!! Really i do not have words...
mit_ose Bonjour, J'ai d'excellents résultats avec cet indicateur simple et efficace; Merci beaucoup;
ottimo Thank you Nicolas, great indicator, N. 1
tikigai Merci Nicolas! First Happy new Year 2020. Very good indicator BUT (yes the french "oui, m...
Nicolas Whats prorealtime version? Did you try in version prior to v11? indicator's call and loop ca...
Nicolas Yes, that's how it goes when using loops..
JosephFelix Hi, Could I please have help with adding these indicators 'on price'? Every indicator that I...
Nicolas Just add it on price by clicking the wrench on the left upper side of the price chart.
myhlo Super Nicolas !! Cet indicateur offre une nouvelle lecture du Rsi ! Ces bandes up & Dawn...
okiki please how can i acess the indicator i like it and want it please am new here
Nicolas download the itf file above and import it into your prorealtime platform: https://www.prorea...
Paul the last update can be found in topic Strategy DayOpen Straddle for DAX on page 14.
bertrandpinoy l instruction GRAPH pose problème sur PRT... pas vous? cordialement
Nicolas Supprimer simplement les lignes avec GRAPH pour passer en ProOrder, trading live.
XXXXVII Excellent indicateur ! Déterminer une tendance est devenu un jeu d'enfants ! Félicitation......
gregoire bonjour nicolas j ai cherché partout sur le net et impossible de trouvé ce que je recherch...
Nicolas Merci de poster une demande dans le forum des indicateurs, ainsi on pourra le coder dans ce ...
bala Hi Nicolas, I have been extensively researching for lot of answers here. I found that you...
Nicolas Don't apply it on price, use the main "indicator and trading system" button found on the top...
Bogdan35 Hello, Is there one for MT4?
Nicolas
7 years ago
Kosuda76 Thanks for your reply! But I do not really understand what the opposite of them the values ​...
AdriTrade Good job Louis!! How could do this for the Williams indicator? Thank you very much.
imorandin Hi!, Nice code. I'm tryng to port it to another language, but I don't understand this part:...
luxrun Thanks, bolsatrilera, for a very good and solid screener!
luxrun sorry... indicator!
Lily Rios Gracias por el indicador, tengo una pregunta necesito programar un screener de valores que e...

Top