Alan Kelland’s Box – DaBox

v10.3
Alan Kelland’s Box – DaBox

This indicator is in relation to the Alan Kelland’s trading method called the “Alan Square” or “DaBox”. You might find a lot of information about this on the internet.

It has been coded from its description, requested in the English forum.

The indicator can plot the Alan Square from different time horizons:

  • 0 = daily timeframe
  • 1 = weekly timeframe
  • 2 = monthly timeframe
  • 3 = yearly timeframe

Some useful infos about the indicator:

A draw tool growing in popularity is the Alan Square, named after its inventor Alan Kelland.  Alan’s method is first and foremost price action.  The square serves as a structure to create

  • Opportunities
  • Targets and
  • Protection

The most important aspects are to look for only the best quality setups, focus on identifying follow through bars, and never fade a zone (i.e., never sell a support zone, never buy a resistance zone).

Background
Alan developed his methods trading the ten-minute all-sessions Dow Jones Index futures (YM contract).  This article and the trading strategies described reflects his work using that instrument.  They are suggested uses only and as such are not a complete compilation of all his methods.  However, traders have successfully applied the square to the S&P futures, DAX, Crude Oil, Euro, Bund, Bond, Russell and even stocks.  Similarly, while the method is geared towards 10-minute bars, Alan has also used the square on various intra-day time frames and Daily charts.  You are encouraged to experiment and find what works for you.

Though Alan does not use indicators (e.g., MACD, Stochastic, etc), many traders do and have added them to their charts.  Price action strategies that Alan has shared to take advantage of these opportunities, protections, and targets are summarized in this article.

Components
The major components of the Alan Square are:

1) Angulars

  • a) Major – Up and Down angulars from the High, Low, and square Midpoint.
  • b) Minor – Up and Down angulars parallel to the Major, but from the 25% and 75% quartiles.

    Note: Only Major angulars create opportunities.  Minor angulars are primarily used for protection.

2) Quartiles

  • Yesterdays Low – 0% level  (See below for how to determine Daily High and Daily Low)
  • Yesterday’s High – 100% level
  • Midpoint – 50% of yesterday’s Daily High and Daily Low
  • Quartiles 25% and 75% of yesterday’s High-Low range
  • Extensions (125% to 200% or more of High-Low range)

 

 

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. Maxime Baudin • 08/07/2018 #

    Really interesting! Thanks for sharing, have a great summer!

  2. Onega • 08/07/2018 #

    Sorry, a quick question I cannot see on forum please ?…Using ProScreener, how can we get the full list of stocks that meet the criteria, not just the top 50 ?
    Thank you,

  3. Pepsmile • 08/07/2018 #

    Interesting !
    Anybody knows how could we add 4 hours timeframe simply to the 4 timeframes proposed without using the new timeframe feature available only in Probacktest ?

    • Nicolas • 08/07/2018 #

      The indicator may be not as accurate with the initial version, see discussion here: https://www.prorealcode.com/topic/req-alans-box/
      I’m waiting for a reply from @rapid

  4. maurizio • 08/07/2018 #

    A me non funziona errore nella riga 11 e 13

  5. maurizio • 08/07/2018 #

    //PRC_Alan Kelland’s Box | indicator
    //07.08.2018
    //Nicolas @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge

    // — settings
    alpha = 100 //alpha transparency of angular lines
    mymyTimeframe = 0 //0=daily , 1=weekly , 2=monthly, 3=yearly
    // — end of settings

    defparam drawonlastbaronly=true

    if myTimeframe=0 then
    hh=dhigh(1)
    ll=dlow(1)
    if intradaybarindex=0 then
    startbar=barindex
    endif
    elsif myTimeframe=1 then
    if DayOfWeek<DayOfWeek[1] then
    hh = Highest[BarIndex – lastWeekBarIndex](High)[1]
    ll = Lowest[BarIndex – lastWeekBarIndex](Low)[1]
    lastWeekBarIndex = BarIndex
    startbar=barindex
    Endif
    elsif myTimeframe=2 then
    If MonthMonth[1] then
    hh = Highest[BarIndex – lastMonthBarIndex](High)[1]
    ll = Lowest[BarIndex – lastMonthBarIndex](Low)[1]
    lastMonthBarIndex = BarIndex
    startbar=barindex
    endif
    elsif myTimeframe=3 then //yearly myTimeframe
    if year>year[1] then
    hh = Highest[BarIndex – lastYearBarIndex](High)[1]
    ll = Lowest[BarIndex – lastYearBarIndex](Low)[1]
    lastYearBarIndex = BarIndex
    startbar=barindex
    endif
    endif

    //horizontal
    drawvline(startbar) coloured(0,0,255)
    drawsegment(startbar,ll,barindex,ll) coloured(0,0,255)
    drawsegment(startbar,hh,barindex,hh) coloured(0,0,255)
    midpoint=(hh+ll)/2
    drawsegment(startbar,midpoint,barindex,midpoint) coloured(0,0,255)
    quartile=(hh-ll)/4
    drawsegment(startbar,ll+quartile,barindex,ll+quartile) coloured(200,0,0)
    drawsegment(startbar,ll+quartile*3,barindex,ll+quartile*3) coloured(200,0,0)

    //angulars
    mid=quartile*2
    for i = 0 to 10 do
    drawline(startbar,ll+mid*i,barindex,hh+mid*i) coloured(0,191,255,alpha)
    drawline(startbar,ll-mid*i,barindex,hh-mid*i) coloured(0,191,255,alpha)
    drawline(startbar,hh-mid*i,barindex,ll-mid*i) coloured(0,191,255,alpha)
    drawline(startbar,hh+mid*i,barindex,ll+mid*i) coloured(0,191,255,alpha)
    next

    return

avatar
Register or

Likes

avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar avatar
Related users ' posts
Marius Zammit Still learning and very new to all this. Can this indicator be turned into an automated trad...
Nicolas Yes sure, please create a dedicated post in the automated trading forum.
leederbyshire Hi is it possible to replace the dots with red/green vertical lines? Thank you.
Nicolas Add indicator on price doesnt require any specific type of subcription. Click on the wrench ...
tahiti bonjour j'ai une petite question comment peux on enlevé la bar blanche sur la bougie en cour...
sixeight Hi Kris, is there a way to increase the number of rows? I get a loop error
Nicolas It may be possible that the variables are still present in the code while they are also in t...
luxrun I found this solution, thanks
luxrun thanks Nicolas
Nicolas
6 years ago
CCI Trend
v10.3
CCI Trend
1
Indicators
Abdelkrim Maksour hi sir is this indicator for mt4 and how i can get one .
sir_i Bonjour à tous, Je suis nouveau sur le forum et sur la plateforme, pourriez-vous me dire com...
Nicolas Il faut simplement l'appliquer sur le prix.
sir_i Merci pour la réponse, je ne suis pas familier avec l'application de cette procédure simple,...
funkystuff Salut Balmora, Ton indicateur est plutôt intéressant :) Penses-tu qu'il soit possible de l'...
brian gilbert Hello, can you explain to me what are "pipsize" and "ATAN"? What functions do they have and ...
Bodaris Bonjour, Je suis débutant 1 mois :p pipsize ressemble à la fonction pointsize et ATAN...
Nicolas Il s'agit d'un indicateur compatible avec PRT v11 uniquement. Pour éviter les erreurs de cop...
Sébi Intéressant. Merci pour ce partage Nicolas. L'indicateur ne considère pas les divergences ...
Nicolas ok, pour les divergences chacun voit midi à sa porte je dirai :) Vu qu'il n'y a pas de formu...
Nicolas File and code are updated.
Zasinas2000 Hi allo I am not sure I am doing it correctly, but this adds to proreal as an indicator. ...
Trimicha Hi, when I copy the code, i get an error message that LinRegPeriod is not defined. Doe...
robertogozzi
6 years ago
M-Oscillator
M-Oscillator
10
Indicators
robertogozzi Sorry for my late reply. I’ll make it and open a new topic quite soon.
swapping ah ah ! je n'avais pas vue celui-ci, excellent robert ;)
robertogozzi Thank you swapping.
Nicolas change the lastline with: RETURN lastsig and check if lastsig change its value with the a...
nectouxg Hello Nicolas, I will try tonight when I get home, just one last question, I trade the DA...
FXtonio Bonjour, j'ai un problème avec le code, il me dit que ce n'est pas correct ligne 26-27-28: ...
Nicolas Good job Gabri, I confirm that with the new ProRealTime v11, everyone will be able to use in...
Slowlyslowly can u just help me with the exact definition of percbox , mm and period to understand will a...
Vinks_o_7 Great, thanks a lot Nicolas !
Teddy Coronak Top Nicolas ! Merci
Andyswede Thank's! Great indicator:)
mcha merci bien et félicitations pour la réactivité avec laquelle il a été mis dans la bibliothèq...
soulintact Great indicator Nicolas, thanks!
juanj
6 years ago
juanj I have actually completely redesigned this indicator with loads of improvements, so will res...
Didouqc Bonjour Nicolas, Merci pour cet indicateur, encore génial! Je souhaite faire une suggest...
cdc.andersson Hello, when trying to include this wonderful Dynamic RSI on my trading system i get the erro...
Rafyone Bonjour Nicolas et bonne année lol J'ai une erreur qui apparait concernant drawbarchart une...
Nicolas Je pense que tu n'utilises pas le bon éditeur de code, cette instruction est compatible uniq...
Kris75 Hi, This is great !! anyone ever developped a strategy about it ???
swapping hello Kris75, not that I know but it is possible to make a scenario ;)
digitation Hi swapping, Thanks for sharing this useful tool. I was wondering how difficult it would be...

Top