Previous weeks high and low price level
- This topic has 5 replies, 3 voices, and was last updated 2 years ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
Similar topics:
Forums › ProRealTime English forum › ProBuilder support › Previous weeks high and low price level
Can somebody help me with this. I am trying to return a Donchian like indicator that shows a channel with the last weeks high and low overlaid on a daily chart. Not a Donchian because I want the price levels for the previous week to stick for the entire current week before updating on the Monday.
This is what I have tried but it doesn’t work, but I don’t know why. Apologies in advance for the basic question.
1 2 3 4 |
Timeframe(1 Week) Upper = highest[1](high) Lower = lowest [1](low) return Upper,lower |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
DefParam CumulateOrders = False TimeFrame(1 week, UpdateOnClose) Upper = Highest[1](High) Lower = Lowest[1](Low) TimeFrame(daily) PositionSize = STRATEGYPROFIT / (Close * MargePerc) If PositionSize < MinPosition then PositionSize = MinPosition EndIf If PositionSize > MaxPosition then PositionSize = MaxPosition EndIf If close > Upper[xL] then Buy PositionSize contract at market ElsIf Close < Lower[xS] then SellShort PositionSize contract at market EndIf |
These kinds of simple systems where you compare the Close with a previous value, usually score well, both on robustness and performance…
Thank you JS!
I understand the UpdateOnClose now, and thank you for the system example. I am trying to develop a couple of super simple strategies along these lines. However simple ideas turn into complex code!
Just starting out so every answer brings another question at the moment. Apologies.
When I try and replicate your system I get nothing like your equity curve. Can you explain what the [xL] and [xS] are referring to.
I think I understand the Money Mment but what is MargePerc
Hi @BlackWing
xL (xLong) and xS (xShort) are the parameter I used to optimize.
I think I had xL and xS optimized from 0 to 100 (step 5).
MargePerc is Margin Percentage for example Dow Jones is MargePerc = 0.05 (5%)
I will try to add the code as itf -file
Find exclusive trading pro-tools on