Initial Balance Indicator V2.0

v10.3
Initial Balance Indicator V2.0

Here is an Initial Balance Indicator V2.0 on a 5 min DAX chart. It measures high and low between 08:00 and 09:00 GMT+1. The strategy is to trade the faded breakout. Enter at high or low and ride toward the opposite side. You need to do the research on the best pips and SL for the strategy on various Instruments, but around 25-40 pips works very good.

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. winnie37 • 03/23/2017 #

    Hi kasper,
    Have you ever backtested it with a full auto strategy? 

  2. winnie37 • 03/23/2017 #

    I would be nice if we could have high and low programmable lines….

  3. Elsborgtrading • 03/23/2017 #

    Hi winnie.
    I was attending a webinar for this strategy. The presenter had 5 min DAX data from 2009 and had it backtested to 80% winnings if pips was <40. But like all trading information you need to test it your self so currently I’m trying to make a automated strategy, but so far with no luck.
     

  4. HerveS_67 • 03/23/2017 #

    Hi and thanks,
    But on my chart, the drawrectangle  was drawn on the previous periods, not only from 8am to 9am ..
    Because you have to write line 13 : \"starttime = 080500\"
    For information I am on CFD h24 with restriction on the schedules FUT 8h-22h
    Do you know how to restrict the display to the current period ?
    @+RV
     
     

  5. Elsborgtrading • 03/23/2017 #

    Previous period? The code states start @08:00 end @ 09:00 so unless you have changed your timezones or somerhing I cannot see how it is not drawn on that timeperiod. Starttime is becaus 8:05 is because start candle 8:00 closed 8:05. The draw is on close

  6. winnie37 • 03/23/2017 #

    Hi Kasper,
    as usual, nothing without huge work!!!:) Don’t hesitate if something new 🙂
     

  7. winnie37 • 03/23/2017 #

    Hi Kasper,
    as usual, nothing without huge work!!!:) Don’t hesitate if something new.
    Hahah, you give me luck. With thois comment, I’m now considered as “veteran “:)
     

  8. winnie37 • 03/23/2017 #

    sorry, as “senior” 🙂

  9. Elsborgtrading • 03/23/2017 #

    @Herves I didn’t understand you before and was on my phone, so now I am on my Pc and I see what you mean. yes you are right it should be 080500. but it’s only for the drawing part. the high and low are correct.
    I’m not sure what to restrict? there is no drawing outside 0800 to 2200 ?
     

    • HerveS_67 • 03/23/2017 #

      Thanks…. And right, it’s only for drawing parts…
      For the other question, would someone else limit the drawing to the last period ?
       

  10. Abz • 03/23/2017 #

    Hello Elsborg
    thanks for a very nice indicator , i see you comment that you are trying to make an automated strategy but with no luck you say is that beacause of

    you have made a strategy with this indicator but are not finding any profitable strategy?
    you have not been able to make this indicator to a automated strategy/system?

    i tried to make this automted but with no luck yet. 

    • Elsborgtrading • 03/23/2017 #

      Hi Abz, well it was profitable until I used tick by tick backtest. I don’t know if I will be able to make it a success

  11. Abz • 03/23/2017 #

    do you mind to share the code?  , i really want to try it on different types of securties play around with sl & tp and time to see if we can make some profittable strategies. 

  12. Elsborgtrading • 03/23/2017 #

    No I don’t mind. Maybe together we can find a way. So this was my start. here only on short. Just keep in mind it zero bar trading and the tick by tick test will ruin the profit.
     
     

  13. Elsborgtrading • 03/23/2017 #

    //===========================================================
    //5 min Time frame
    //Inital balance shortV1.0
    //First Hour in the morning form 8:00-9:00 GMT+1 on DAX
    //
    //Kasper Elsborg @Elsborgtrading
    //===========================================================

    //==================DAX Daily Timeframe==========================
    // Definition of code parameters
    DEFPARAM CumulateOrders = false // Cumulating positions
    DEFPARAM PRELOADBARS = 100
    //==========================tradeingtime=========================
    IF (Time >= 090000 AND Time <= t1) and dayofweek<=5 then// or (Time >= 220000 AND Time <= 220100) and dayofweek=1 THEN //
    Tradetime=1
    else
    Tradetime=0
    endif
    //===============================================================

    //REM Money Management
    Reinvest=0
    if reinvest then
    Capital = 2000
    Risk = 1//0.1//in % pr position
    StopLoss = 4//7//10 // Could be our variable X

    REM Calculate contracts
    equity = Capital + StrategyProfit
    maxrisk = round(equity*(Risk/100))
    MAXpositionsize=5000
    MINpositionsize=1
    Positionsize= MAX(MINpositionsize,MIN(MAXpositionsize,abs(round((maxrisk/StopLoss)/PointValue)*pipsize)))
    else
    Capital = 2000
    Positionsize=1
    StopLoss = 4
    equity = Capital + StrategyProfit
    Endif

    //===============Indicator
    x1=stoploss
    x2=1
    x3=36
    x4=-10
    x5=2
    t1=160000
    once upper=0
    once lower=0

    //starttime = 080000
    endtime = 090000

    If Time = endtime then
    upper=highest[12](high)
    lower=lowest[12](low)
    dif=round(abs((lower-upper)*pipsize*pointvalue))
    endif

    //fadebreakoutlow=lowest[3](low)<lower+10
    enterhigh=close crosses under upper

    If not onmarket and close >=upper-x2 then//and close>lower-x3 and tradetime then
    fadehigh=1
    elsif onmarket then
    fadehigh=0
    endif
    once shorttrade=x5//2

    if not tradetime then
    shorttrade=x5//2
    endif

    //==========Enter market LONG

    if dif<=x3 and fadehigh then

    if not onmarket and Tradetime and enterhigh and shorttrade<>0 then
    sellshort Positionsize CONTRACTS AT MARKET
    shorttrade=shorttrade-1
    ENDIF
    endif
    SET STOP loss x1
    set target profit dif+(x4)

    graph shorttrade COLOURED(0,0,0) AS \"onetrade\"

     
     

  14. Elsborgtrading • 03/23/2017 #

    I have moved the development topic https://www.prorealcode.com/topic/development-of-initial-ballance-automated-strategy/#post-30176
     
     

  15. Elsborgtrading • 03/23/2017 #

    Sometime along the way since I coded the Indicator something has change in PRT- at least I think. The draw rectangle function is no longer drawn on the time defined- it’s just drawn in all the chart- leaving it very un-useful. Also I experienced utterly low performance when scrolling in the chart so I made a quick fix. It seems to be less process consuming, and I change the draw rectangle with a simple background colour
    //===========================================================
    //5 min Time frame
    //Initial Ballance indicator v2.0 10 min chart
    //First Hour in the morning form 8:00-9:00 GMT+1 on DAX
    //Observe pips between 25-40, trade faded breakout to opposite High/Low
    //Kasper Elsborg @Elsborgtrading
    //===========================================================

    defparam drawonlastbaronly = false
    once upper=0
    once lower=0

    starttime = 080500
    endtime = 090000

    If Time = endtime then
    upper=highest[6](high)
    lower=lowest[6](low)
    dif=round(abs((lower-upper)*pipsize*pointvalue))
    //bars=barindex
    DRAWTEXT(\"#dif# pips\", barindex-6, upper+10,SansSerif,bold, 16)
    DRAWARROWDOWN (barindex-6,upper+5)
    DRAWARROWup (barindex-6,upper+15)
    DRAWTEXT(\"#upper#\", barindex-6, upper,SansSerif,bold, 16)
    DRAWTEXT(\"#lower#\", barindex-6, lower,SansSerif,bold, 16)
    endif
    //if time >=080500 and Time <=090000 then
    ////backgroundcolor(0,255,255)
    //DRAWRECTANGLE(barindex-6,upper,barindex-6,lower) COLOURED(0,255,0)
    //endif
    if time >=090500 and Time <=220000 then
    count=count+1
    DRAWsegment(barindex-count,upper,barindex,upper)coloured(0,0,0)
    DRAWsegment(barindex-count,lower,barindex,lower)coloured(0,0,0)
    else
    count=0
    endif
    //
    //if intradaybarindex=0 then
    //hh = 0
    //ll = 0
    //alreadydrawn = 0
    //endif
    //
    //if time=starttime then
    //startbar=barindex
    //endif
    //
    //if time=endtime then
    //endbar=barindex
    //endif
    //
    //if time>=starttime and time<=endtime then
    //if high>hh then
    //hh = high
    //endif
    //if low<ll or ll=0 then
    //ll = low
    //endif
    //endif
    //
    //if time>endtime and alreadydrawn=0 then
    //drawrectangle(startbar,hh,endbar,ll) coloured(0,255,255)
    //alreadydrawn=1
    //endif
    if time >=starttime and Time <=endtime then
    backgroundcolor(0,255,255)
    endif

    RETURN

     

  16. Elsborgtrading • 03/23/2017 #

    Btw last code was a 10 min TF ver. 

  17. otty82 • 03/23/2017 #

    Hi,
    one short question.
    How can I change the thickness of the lines and rectangle.
    regards
    Johannes

  18. Elsborgtrading • 03/23/2017 #

    short answer- you cannot 🙂

  19. otty82 • 03/23/2017 #

    Pity!
    thx
    In which timeframe i can use the indicator? 1h? Or which timeframe is the best?
    Can i use it also in forex EUR/USD or something else?
     

    • Elsborgtrading • 03/23/2017 #

      The indicator messure the high and low between 8:00 and 9:00 on a 5 min Timeframe. This is the initial ballance. 2nd code postet if on a 10 min tf. if you want another time frame you need to adjust the period of
       

  20. Elsborgtrading • 03/23/2017 #

    upper=highest[6](high)//6 periods on a 10m min TF yield 1Hlower=lowest[6](low)//6 periods on a 10m min TF yield 1H

  21. otty82 • 03/23/2017 #

    thanks so much. I understood.
    It´s a great indicator.
     

  22. otty82 • 03/23/2017 #

    You have an idea if you can modify this indicator so that you can use it for the Wall Street Kassa(1E)

  23. Elsborgtrading • 03/23/2017 #

    the indicator works on all instrument, question is if the strategy will work. You have to do you own research for this

  24. otty82 • 03/23/2017 #

     all right. thanks

  25. mmichael • 03/23/2017 #

    Hello, I noticed that the indicator shows the initial balance of today but also for all the previous days (a lot of line!!). Is it possible to draw only for the current day. I guess we need to add a condition like: “if day = today then…”. What is the good synthax to do so? thx in advance

  26. leyoy • 03/23/2017 #

    Bonjour, comment l’adapter sur 15 minutes au lieu de 1 heures … j’ai changé 090000 par 081500 mais ca marche pas. Une idée ?

avatar
Register or

Likes

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

+1 more likes

Related users ' posts
Bateson
5 months ago
JohnScher Short variant, see at https://www.prorealcode.com/topic/late-lunch-trade-dax40-strategy/
DANY Hi JohnScher, Thanks a lot for your contribution. Consider this release to avoid overfit...
JohnScher Thank you so much for exploring the Late Lunch Strategy. For discussion and in answer to yo...
larouedegann Amélioration du code ............................... Je trouvais assez frustrant d'attendre...
larouedegann if TIME=081500 then valeurhaute= highest[1](high) valeurbasse= lowest[1](low) milieu = v...
BenJuice JohnScher, merci de partager ta stratégie. Je suis nouveau dans ce domaine, sur ton code q...
JohnScher As a percentage of the price, here 2%. StopLoss as well as TargetProfit. SL and TP come ...
Wilko I absolutely love the simplicity of this mean-reversion strategy. Well done!
Patrice210 bonjour STANKO, effectivement la première ligne apparait en anomalie et je ne comprend pas v...
KumoNoJuzza Hi guys, Thanks @Stanko and everyone for your contributions. I have been playing around ...
Stanko Hi KumoNoJuzza, thanks for the post. I also tried your code with Dax and the performance is ...
snucke i dont think you understod the question. i did not ask about the band pass indicator. i as...
thomas2004ch Hi, Is this startegy suitable for daily SPY? Regards
ebous64 Je cherche à traiter des effets de bords avec un encadrement ajustable des variables. Vous a...
JohnScher Postscript: It's running in the live right now. One position after the other is opened. ...
ullle73 nice!! how's it been since your last post on going live? :)
thomas2004ch Hi, Is this strategy suitable for daily SPY? Regards
wally Hola soy nuevo en el mudo robots. Alguien seria tan amable de poner el archivo itf.file ya q...
Darren Nash I found this works well on the DOW
thomas2004ch Hi John, Is your strategy suitable for daily SPY? Regards
cdc.andersson Hello, I´m trying to paste the code and start testing but can´t get it to work in PRT. Shoul...
Lupo32 Thank You Aaron
superfalcio I'm having no more issue on the new Prorealtime release 11.1
FXmike hey my friends, thank you for this great code. my problem is he make no trade open. backtest...
FXmike Can i put a Action that my start contract is smaller than 1 ? 0.3 or 0.5 ? In wich Position...
phoentzs I wrote the code for M15 back then and also variants in H1 and M1. Everything works so far....
Jan Wind Thanks for sharing ! The Gain/Loss ratio is a bit low, 1,16, hardly offset the risks take...
drive whats the period ?
Lucas0000 Hola. estoy buscando un programador en proorder, para hacer un programa basado en el Q-trend...
Ludwig Bonjour Merci pour le code, je souhaite intégrer un break even et mette en place un réinves...
superfalcio hello, this strategy is pretty interesting, anyway on index after diferent suggestion and im...
Fralex Hello everyone I optimized the original “LongOnly-DAX-4H-TMA-Channel” algorithm over a pe...
Dom Hello, hello....je commence le trading et découvre par la même occasion le codage....et ce n...
Nicolas Merci, ça fait plaisir !
Be-n Bonjour tout le monde ! Dans l'indicateur de tendance, j'ai du mal à saisir la nuance entre ...
YvesRobert @robertogozzi. It's done. Thank you
YvesRobert Hello Roberto, some questions about your strategy. 1 - Do the 2 lines SET TARGET pPROFIT T...
robertogozzi 1. The 2 lines SET TARGET pPROFIT TP and SET STOP pLOSS SL are always executed, each bar. Bu...
avatar
Anonymous Hi robertogozzi - thank you very much for sharing this strategy. I have performed various ...
robertogozzi Thank you samsampop.
Dotan Hello guys I really appreciate this coding effort but can I use this code for Mt5 Forex Trad...
Gubben So far so good. After a long drawdown it was winning four times in five weeks. Since 24 jul...
pat95162 Salut Pourquoi je n'ai pas les même résultats que vous
UkCoopDownUnder Any hints for us, on which variables we should be optimising ? As of November 2020, the cu...
Peter I recognized a possible problem with the timeframe / Defparam variables. As far as I know, t...
superfalcio Hello Peter, it is long time i have been watching this strategy, very good and interesting ...
Peter I indeed do have different modified strategies in the market. In the past my variants perfor...
JJ Tec Hola. Me gustaría contactar contigo para ver la estrategia..
nilsla1981 Has someone already tested in real ?
Lucas0000 Hola. estoy buscando un programador en proorder, para hacer un programa basado en el Q-trend...
JOKAMAURICE Thank you but I don't really understand. The values don't fit with what I see on my chart. I...
Alberto Aguilera Hi! Thanks for your strategy Anyone can check it with 200 bars?
TempusFugit Hi, this simple system for DOW and only shorts has worked quite well, maybe because of its q...
phoentzs Unfortunately, I never pursued this strategy further. Maybe I should take a look with what ...

Top