DOW closed with a nice profit.
Cocoa knocks on the 2034.
1.350 Euro profit with the DOW trades. Pathfinder has a run 🙂
wp01Participant
Master
Reiner,
Attached i tried the IBEX 4H. Unfortunately i could not get it any better. The percentage winners is too low and the drawdown is to high.
When i optimized the months i noticed in June a profitfactor of 48. Maybe all months zero with exception of June?
Maybe you find interesting enough to take a look at it.
regards,
Patrick
I have both DOW trades still running.
According to the parameter maxCandlesLongWithProfit = 17, they should have been closed by now. In the backtest they were closed 1300 yesterday.
Why?
Do I have to close them manually?
@H_kan
When did your positions open?
Best regards, David
Feb 10 0900 and feb 13 1300
wp01Participant
Master
@H_Kan
Unfortunately i do not have an answer but i can confirm the trades:
10-02 09.00 @ 20.233,70 (2 buy)
13-02 13.00 @ 20.312,40 (2 buy)
16-02 13.00 @ 20.613,00 (4 sell)
Patrick
Hi
Great piece of work but can someone help me to display smoothed averages based on another smoothed average please.?
@Dymjohn
you can create your own indicator and add it to the chart window. Please find below a Pathfinder indicator version for the DAX.
// Pathfinder indicator
// show all lines and levels of Pathfinder TS
// DAX V6
ONCE periodFirstMA = 5
ONCE periodSecondMA = 10
ONCE periodThirdMA = 3
// calculate signalline with multiple smoothed averages
firstMA = WilderAverage[periodFirstMA](close)
secondMA = TimeSeriesAverage[periodSecondMA](firstMA)
signalline = TimeSeriesAverage[periodThirdMA](secondMA)
// calculate daily high/low (include sunday values if available)
dailyHigh = DHigh(1)
dailyLow = DLow(1)
// calculate weekly high/low
IF DayOfWeek < DayOfWeek[1] THEN
weeklyHigh = Highest[BarIndex - lastWeekBarIndex](dailyHigh)
weeklylow = Lowest[BarIndex - lastWeekBarIndex](dailyLow)
lastWeekBarIndex = BarIndex
ENDIF
// calculate monthly high/low
If Month[1] <> Month[2] then
monthlyHigh = Highest[BarIndex - lastMonthBarIndex](dailyHigh)
monthlyLow = Lowest[BarIndex - lastMonthBarIndex](dailyLow)
lastMonthBarIndex = BarIndex
ENDIF
// filter
shortMA = Average[50]
longMA = Average[300]
return signalline AS "signal line", dailyHigh coloured(153,153,0) AS "daily High", dailyLow coloured(153,153,0) AS "daily Low", weeklyHigh coloured(255,153,153) AS "weekly High", weeklyLow coloured(255,153,153) AS "weekly Low", monthlyHigh coloured(153,153,255) AS "monthly High", monthlyLow coloured(153,153,255) AS "monthly Low", shortMA coloured(0,0,255) AS "short Average", longMA coloured(255,153,0) AS "long Average"
Reiner,
Thanks for this. I hate to admit defeat but my maths knowledge is sadly lacking and at my advanced years is taking a long time to improve (if it ever does).
regards
Dymjohn
Hi Reiner
I’ve got the 4k euro version of DAX but I don’t remember if there is a version for DOW, HS, FTSE too? If so, is it possible to have them in the first post? Great with a lot of post in this thread but at the same time difficult to go back and find things you know you’ve seen:)
Have a nice weekend!
/Martin
Martin, a version for small accounts is currently only available for the DAX
DAX 4h V6 closed 17 feb 2017 21:00:04 at 11786.4
Can someone confirm?
Hi Roxxuz, I can confirm the closing of the Dax with a very small profit of € 0.30 at 9:00 p.m. on February 17 (11786.4).