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
-
-
04/27/2020 at 6:39 PM #128481
Here the Pathfinder System that i am using, LIVE.
Hi Gianluca,
- How many contracts you’re trading? Because we cannot see how profitable it is?
- Buy the way do you see any reason why this system stopped been profitable since 2017 on all the versions ???
Thanks,
Chris
05/04/2020 at 11:10 PM #129935Here the Pathfinder System that i am using, LIVE.
Hi Gianluca,
- How many contracts you’re trading? Because we cannot see how profitable it is?
- Buy the way do you see any reason why this system stopped been profitable since 2017 on all the versions ???
Thanks,
Chris
Overfitting
1 user thanked author for this post.
05/11/2020 at 4:27 PM #13115808/19/2020 at 10:14 AM #141999Dear Gianluca,
thank you for this list.
I wanted to backtest these strategies (knowing that you use them live) but could not find the related itf files (at least not with the exact same name). Would you mind copying them here or confirm where I can find them on this website ?
Also you indicated that you close the Italy strategy manually – is the TP too ambitious ? Do you also close other strategies manually ?
Thank you in advance for your help.
Alex.
08/19/2020 at 10:21 AM #14200308/19/2020 at 10:37 AM #14201008/19/2020 at 10:45 AM #142011Hi Gianluca,
Thank you for the (very fast) reply 🙂
I have been testing the file Path-Swing-Italy-Cash.itf and I am also planning the file FTSEMIB-SWING.itf . I find both files scrolling back the page (and in a post from you from 2018).
I just realized looking at your printscreen (attached) that the one you are using live has a different name (Pathfinder FTSEMIB italy SWING) – I was just wondering if these were different versions.
Also I would like to test the other strategies you recommended (Path Dow 4H V7.2 2018 / Path Swing Dax / Path Swing Gold Size 0.5 / Path Swing Tech100) but could not find the ITF files in the attachments list in this page.
Can you confirm where I can find those ?
Thank you again !
10/19/2020 at 12:15 PM #147746I use the Vanilla Nasdaq 4h system and its working very well
Nice, can you share this code please ?
1 user thanked author for this post.
10/22/2020 at 8:03 PM #14812607/31/2022 at 4:37 PM #198219Pathfindersystems123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124// pathfinder system @ ger40 version 3// timezone europetime berlin// timeframe 4H// 2 points spread// Dax breakout system triggered by previous daily, weekly and monthly high/low crossings// Original by Reiner , refresh by JohnScher @ 07/31/2022// proOrder code parameterDEFPARAM CUMULATEORDERS = true // cumulate orders if not turned offDEFPARAM PRELOADBARS = 10000// smoothed average parameter (signalline)ONCE periodFirstMA = 5ONCE periodSecondMA = 10ONCE periodThirdMA = 3// filter parameterONCE periodLongMA = 250ONCE periodShortMA = 50// trading paramterONCE PositionSize = 1// money and position management parameterONCE stoppLoss = 5 // in %ONCE takeProfitLong = 5 // in %ONCE takeProfitShort = 2 // in %ONCE maxCandlesLongWithProfit = 20 // take long profit latest after 18 candlesONCE maxCandlesShortWithProfit = 17 // take short profit latest after 13 candlesONCE maxCandlesLongWithoutProfit = 30 // limit long loss latest after 30 candlesONCE maxCandlesShortWithoutProfit = 30 // limit short loss latest after 25 candles// calculate daily high/lowdailyHigh = DHigh(1)dailyLow = DLow(1)// calculate weekly high/lowIf DayOfWeek < DayOfWeek[1] thenweeklyHigh = Highest[BarIndex - lastWeekBarIndex](dailyHigh)lastWeekBarIndex = BarIndexENDIF// calculate monthly high/lowIf Month <> Month[1] thenmonthlyHigh = Highest[BarIndex - lastMonthBarIndex](dailyHigh)monthlyLow = Lowest[BarIndex - lastMonthBarIndex](dailyLow)lastMonthBarIndex = BarIndexENDIF// calculate signalline with multiple smoothed averagesfirstMA = WilderAverage[periodFirstMA](close)secondMA = TimeSeriesAverage[periodSecondMA](firstMA)signalline = TimeSeriesAverage[periodThirdMA](secondMA)// filter criteria because not every breakout is profitablec1 = close > Average[periodLongMA](close)c2 = close < Average[periodLongMA](close)c3 = close > Average[periodShortMA](close)c4 = close < Average[periodShortMA](close)// long position conditionsl1 = signalline CROSSES OVER monthlyHighl2 = signalline CROSSES OVER weeklyHighl3 = signalline CROSSES OVER dailyHighl4 = signalline CROSSES OVER monthlyLow// long timebased conditionstmLong = openmonth <> 1 and openmonth <> 9tdLong = opendayofweek >= 1 and opendayofweek <= 4 //sik!ttLong = time >= 090000 and time <= 210000// short position conditionss1 = signalline CROSSES UNDER monthlyHighs2 = signalline CROSSES UNDER monthlyLows3 = signalline CROSSES UNDER dailyLow// short timebased conditionstmShort = openmonth <> 3 and openmonth <> 5 and openmonth <> 10 and openmonth <> 11tdShort = opendayofweek >= 1 and opendayofweek <= 5ttShort = time >= 090000 and time <= 210000// long entryIF tmLong and tdLong and ttLong thenIF ( l1 OR l4 OR l2 OR (l3 AND c2) ) THEN // cumulate orders for long tradesBUY PositionSize CONTRACT AT MARKETtakeProfit = takeProfitLongENDIFEndif// short entryIF tmShort and tdShort and ttShort THENIF ( (s1 AND c3) OR (s2 AND c4) OR (s3 AND c1) ) THEN // no cumulation for short tradesSELLSHORT positionSize CONTRACT AT MARKETtakeProfit = takeProfitShortENDIFENDIF// stop and profit managementposProfit = (((close - positionprice) * pointvalue) * countofposition) / pipsizem1 = posProfit > 0 AND (BarIndex - TradeIndex) >= maxCandlesLongWithProfitm2 = posProfit > 0 AND (BarIndex - TradeIndex) >= maxCandlesShortWithProfitm3 = posProfit < 0 AND (BarIndex - TradeIndex) >= maxCandlesLongWithoutProfitm4 = posProfit < 0 AND (BarIndex - TradeIndex) >= maxCandlesShortWithoutProfitIF LONGONMARKET AND (m1 OR m3) THENSELL AT MARKETENDIFIF SHORTONMARKET AND (m2 OR m4) THENEXITSHORT AT MARKETENDIFSET STOP %LOSS stoppLossSET TARGET %PROFIT takeProfit07/31/2022 at 5:25 PM #19822307/31/2022 at 5:56 PM #198246I modified the TP short =5
2 users thanked author for this post.
07/31/2022 at 6:09 PM #19824807/31/2022 at 6:21 PM #19824908/11/2022 at 9:54 AM #198944 -
AuthorPosts
Find exclusive trading pro-tools on