Pathfinder Trading System
Forums › ProRealTime English forum › ProOrder support › Pathfinder Trading System
- This topic has 1,834 replies, 139 voices, and was last updated 1 year ago by CFD AutoTrading.
Tagged: Pathfinder
-
-
12/12/2016 at 12:24 PM #1831612/12/2016 at 1:06 PM #18323
Hi guys,
many new posts over the weekend and some new followers – welcome.
Pathfinder DAX 4H did a great job and traded like a pro. The behavior of the system is exceptionally good and to be honest I would never had expected that. Pathfinder did the breakout perfectly and made over 700 pips! with 3 contracts :-). I hope everyone understand now how important it is to cumulate and boost high quality signals and give the system enough room for pyramiding.
The system behavior in the long sideway range from 10.Nov until last week is also impressive. Pathfinder waiting very patiently for the right signals and then enters bravly. Many other algos would had lost money in the sideway range.
Please don’t think we have found the holy grail. It’s just a simple ruleset with a certain likely to make money. Don’t expect to much the next drawdown phase will some.
best, Reiner
12/12/2016 at 1:18 PM #18332I just received a signal for the dow 4h v6b2 long and short.
Both systems opened a position at 19787.9
Great to hear the system works better than expected! I’m probably start trading live with the system in januari next year! Thanks again 🙂
12/12/2016 at 1:31 PM #1833512/12/2016 at 1:55 PM #1833612/12/2016 at 2:30 PM #1833812/12/2016 at 3:02 PM #18339Alco, Petrus, Mark,
regarding your questions about V6, V6B2 and Also’s idea. As I mentioned in the V6 release note I keep an eye on drawdown in this version. Here are so many people with different account sizes and I want to have a default version that is tradable for everyone. This mean that V6 is less agressive and focused on a low drawdown (but guys the result is always awesome).
The whole Pathfinder framework is open and transparent and everyone can customize the system to their personal risk. Check the saisonal multiplier and try to find something that fit to your account size.
@Alco: As I mentioned the code that I provide to you is a “sunny wheather” version because I optimized all 48 variables. I don’t want to judge your idea in the way bad or good but I thing that the code should be also clean that everybody can understand and follow the system. If you want to trade your idea feel free to clone Pathfinder and replace the saisonal multiplier calculation with your idea.
best, Reiner
1 user thanked author for this post.
12/12/2016 at 4:21 PM #18355Hi Kasper,
that is a good question. Automatic money management isn’t well integrated in Pathfinder or in other words it’s room for improvement :-). I know we talked about this topic several times. Average position size over the last 6 years was around 5-6 contracts and in peak we had only 3 times trading maximal 15 contracts. Most of the guys here trade the system without dynamic position sizing. I integrated the well known formular more in a sense to play around. Let me know if you have a good approach.
Cheers, Reiner
12/12/2016 at 4:34 PM #1835612/12/2016 at 4:51 PM #18362@Reiner
Sorry if it has been already discussed, but why do not securing profit of the whole basket @breakeven when you stack new order on the same trend (while pyramiding)? Of course it may results of cutting some profit but it may reduce a lot drawdown too. Just my 2 cents on your “new ideas needed” previous post. We have already done something almost similar in the cfta’s topic, it would need some adaptation though.12/12/2016 at 7:01 PM #18380Reiner! Big thanks to you! You´re a very smart man!
Have you thought of changing it to work on lets say 15min och 5min? The priceaction on dax for those timeframes are really great. Maybe then you could do more trades and keep the dd smaller? Eh what do I know, you´re the expert! 😀
12/12/2016 at 7:04 PM #18381@Choo Jen-Sin
Set your PRT to “Display all data in this time zone: UTC+08:00 Singapore time and change the code as I have given earlier. If done correctly, Pathfinder would have open a short trade at about 11189 earlier as confirmed by Alco. Mine did open this trade, and also the trade on 6 Dec.
12/12/2016 at 7:54 PM #18389Hi Reiner.
Okay so dynamic position sizing is due to accumulate orders=true, so no actually MM is present. It should be fairly easy to implement however the one at this forums is not working, and I don’t know why. It never opens op any trade if I implement it.
Then we have Grizzly‘s MM code. 3 strike in a row I believe he calls it. It works, however I think it’s a bit risky to add positions before an actually gain- but it works very well in the backtest.
Then there is the slave way- not beautiful code in any way but it’s working. I also did not test how much one actually risk with either one of the MM strategies. I can see Pathfinder v6 risk 5% i general- which I believe is perhaps a bit high for my risk profile- however with the pathfinder results both in backtest and live demo trading I think i’m willing to risk 5% 😀 We just need to make sure we’re not raising the risk with any MM strategy.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990//=====================================MONEY MGT Grizzly way=============================================MaxPositionA = 250Ratio=1Equity = (Strategyprofit+100000)Risk = min(round(Ratio*Equity/100000)*1,MaxPositionA)Losses = positionperf(1)<0 and positionperf(2)<0 and positionperf(3)<0streak = positionperf(1)>0 and positionperf(2)>0 and positionperf(3)>0Streak2= positionperf(1)>0 and positionperf(2)>0 and positionperf(3)>0 and positionperf(4)>0if losses thenPositionSize = max(abs(round(max(3+risk-2,risk-2))),2)elsif not losses thenPositionSize = max(abs(round(max(3+risk,risk))),2)endifif streak thenPositionSize = max(abs(round(max(5+risk,risk))),2)endifif streak2 thenPositionSize = max(abs(round(max(7+risk,risk))),2)Endif//=====================================the slave way- feel free to add more detailed stepsONCE positionSize = 1reinvest =1if reinvest thenif equity<>10000 thenpositionSize=1if equity >20000 thenpositionSize=2if equity >30000 thenpositionSize=3if equity >40000 thenpositionSize=4if equity >50000 thenpositionSize=5if equity >60000 thenpositionSize=6if equity >70000 thenpositionSize=7if equity >80000 thenpositionSize=8if equity >90000 thenpositionSize=9if equity >100000 thenpositionSize=10if equity >200000 thenpositionSize=20if equity >300000 thenpositionSize=30if equity >400000 thenpositionSize=40if equity >500000 thenpositionSize=50if equity >600000 thenpositionSize=60if equity >700000 thenpositionSize=70if equity >800000 thenpositionSize=80if equity >900000 thenpositionSize=90if equity >1000000 thenpositionSize=100endifendifendifendifendifendifendifendifendifendifendifendifendifendifendifendifendifendifendifelsepositionSize=1Endif12/12/2016 at 8:04 PM #18393Also can anyone confirm that Pathfinder DAX v6 opened op at short @11188.3? it’s not showing up in the backtest here @20:00
Cheers Kasper
12/12/2016 at 8:17 PM #18398 -
AuthorPosts
Find exclusive trading pro-tools on