SHORT EUR USD (m15) // PAC MAN STRATEGY
Forums › ProRealTime English forum › ProOrder support › SHORT EUR USD (m15) // PAC MAN STRATEGY
- This topic has 85 replies, 16 voices, and was last updated 4 years ago by Vonasi.
Tagged: Break Even, BreakEven
-
-
05/01/2018 at 4:09 PM #69577
This is a strategy who takes only short positions on EUR/USD
TimeFrame M15 Test made with spread = 1 pip and n = 7 mini lot of $1
Test, Improve and Enjoy it !!
Happy to have your returns.
Balmora
PAC MAN SHORT STRATEGY / EUR USD (M15)1234567891011121314151617181920// PAC MAN STRATEGY - PIP HUNTER// SHORT EUR USD (M15)// SPREAD = 1 PIPDEFPARAM CumulateOrders = falseDEFPARAM Preloadbars = 4000N = 7 //MINI LOT $1Cv1 = (close < Average[100]) and (Average[50] < Average[50](close[1]))Cv2 = RSI[14](close) <= 28Cv3 = STD[10](close) >= 10.93 * pipsizeCv4 = close <= BollingerDown[13](close[2])OKSHORT = cv1 and cv2 and Cv3 and Cv4IF OKSHORT thenSellshort n CONTRACT at marketSET STOP pLOSS 52SET TARGET PPROFIT 25ENDIF1 user thanked author for this post.
05/02/2018 at 1:28 PM #6964505/03/2018 at 6:16 AM #6967805/03/2018 at 8:55 AM #6968805/03/2018 at 9:02 AM #6969305/03/2018 at 9:43 AM #69698There you go.
Anyone would have a “not too bad” EUR/USD Long strategy to play with ??
Pac Man123456789101112131415161718192021222324252627282930313233343536// PAC MAN STRATEGY - PIP HUNTER// SHORT EUR USD (M15)// SPREAD = 1 PIPDEFPARAM CumulateOrders = FalseDEFPARAM Preloadbars = 6000N = 1 //MINI LOT $1Cv1 = (close < Average[100]) and (Average[50] < Average[50](close[1]))Cv2 = RSI[14](close) < 28Cv3 = STD[10](close) >= 10.93 * pipsizeCv4 = close <= BollingerDown[13](close[2])indicator1 = ExponentialAverage[5000](close)c1 = (close > indicator1)OKSHORT = cv1 and cv2 and cv3 and Cv4 and c1IF OKSHORT thenSellshort n CONTRACT at marketendifstartBreakeven = 9PointsToKeep = 1IF SHORTONMARKET AND (tradeprice(1) - close) >= (startBreakeven * pipsize) THENbreakevenLevel = tradeprice(1) + (PointsToKeep * pipsize)IF breakevenLevel > 0 THENEXITSHORT AT breakevenLevel STOPENDIFENDIFSET STOP pLOSS 48SET TARGET ppROFIT 1205/03/2018 at 9:59 AM #6970005/03/2018 at 10:16 AM #6970405/03/2018 at 10:19 AM #6970505/03/2018 at 10:23 AM #6970605/03/2018 at 10:58 AM #6971105/03/2018 at 11:07 AM #69712I’ve added the latest version to the Link Library, row 24 here Snippet Link Library
More than a Snippet I know, but as I can follow all the code (without having to try and visualise what the eff is going on! 🙂 ) I felt it would be useful to others.
05/03/2018 at 11:17 AM #6971405/03/2018 at 11:20 AM #6971505/03/2018 at 2:12 PM #69725Yea im also a bit skeptical, it seems like its been optimized on 100% of the data and is curvefitted. Would definitly run in demo in a few months before running it live.
Also i removed a rule here and there to see what would happen and the results are strange.. also there is no exit. Thats a red flag for me. I feel like using Profit target + stop loss as the only exit is not good enough. Maybe thats just me tho 🙂 If u got a better exit with it, then ur probably going to see bigger profits. Im also negative to 90%~ winrate strategies because they usually (this included) require a stop loss 3-5x higher then the target. Meaning if winrate would start to drop your gonna start bleeding money very fast.
I would still consider myself a rookie here tho, and im mainly a trend follower, meaning im biased as hell 🙂
-
AuthorPosts