MACD-Strategy M1 SP500
Forums › ProRealTime English forum › ProOrder support › MACD-Strategy M1 SP500
- This topic has 18 replies, 5 voices, and was last updated 2 years ago by
phoentzs.
-
-
03/11/2023 at 4:27 PM #211370
Hello folks,
here is my very simple strategy on SP500 (spread 0.4). Long has been consistently working well for months, so I disabled short. I found the settings around September 2022, so I can say that the strategy has been working in the raw version for at least the last year. The main trend is none other than the MA20 from the TF M15. The MACD entries work in reverse, so the bot enters each mini-pullback and tries to make a profit. The tandem filter works as a trend filter, although it should be used with caution. Can easily be over-optimized. The strategy is also only positive with a MA20 filter and a very low drawdown. The TP/SL ratio is 1:1.1 and I’ve kept it that way since last year. The only thing I tweak from time to time is really the tandem filter.
@PeterSt Can you try it on PRT-IB how the curve looks there?
I would appreciate opinions and suggestions for improvement (perhaps a better filter?).Sorry, I can’t see the “Insert code” option.
//SP500 Spread 0.4
DEFPARAM CUMULATEORDERS = false
defparam preloadbars = 10000//Risk Management
PositionSize = 5//Hauptfilter M15 10…50
Timeframe(15minute, updateonclose)
//Trend
M15L1 = close > Average[20,0](close) and Average[20,0](close) > Average[20,0](close)[1]
M15S1 = close < Average[20,0](close) and Average[20,0](close) < Average[20,0](close)[1]
//Tandem
M15L2 = Average[30,1](close) > Average[55,1](close)
M15S2 = Average[20,1](close) < Average[50,1](close)Timeframe(default)
//Trigger
MACDLinie = MACDline[12,26,9](close) > 0
MACDCross = MACD[12,26,9](close) crosses over 0MACDLinieshort = MACDline[12,26,9](close) < 0
MACDCrossshort = MACD[12,26,9](close) crosses under 0TrendL = M15L1 and M15L2
TrendS = M15S1 and M15S2long = MACDLinie and MACDCrossshort and TrendL
short = MACDLinieshort and MACDCross and TrendS
// trading window
ONCE BuyTime = 153000
ONCE SellTime = 210000// position management
IF Time >= BuyTime AND Time <= SellTime THENIf long Then //not onmarket and
buy PositionSize CONTRACTS AT MARKET
SET STOP pLOSS hl
SET TARGET pPROFIT hl*pENDIF
//If short Then //not onmarket and
//sellshort PositionSize CONTRACTS AT MARKET
//SET STOP pLOSS hs
//SET TARGET pPROFIT hs*p2
//
//ENDIFendif
if time >= 220000 then
sell at market
exitshort at market
endif
if time >= 215900 and dayofweek=5 then
sell at market
exitshort at market
endif03/11/2023 at 5:00 PM #21137303/11/2023 at 5:10 PM #21137503/11/2023 at 6:10 PM #211377Hi,
I’ve just downloaded this system.
I’m running it in demo on SP500. I’m working to let it work also on short position and it seems it positively works.
I’ve changed your original SL and TP ’cause it could do better than 10 pips. I’ve also modified the timeframes: 30M instead of 15 for short position, I’ve added a 3M timeframe for the trigger and left 1M as default.
It seems to work quite well
03/11/2023 at 6:16 PM #211380Bzzzp
We had this issue before that I can’t find the SP500 you are using. The smallest is $50 and that leads to 341000 profit; you would not want that.
What you see below is from IB and I think this is the contract amount you are using (see 2nd attachment). Please let me know.
I added a fee of 1,34 per order (this is 1,34 for in and another 1,34 for out). I can’t see the spread currently, but I think it is 0.5 (I sustained the 0.4).
03/11/2023 at 6:35 PM #21138303/11/2023 at 6:49 PM #21138403/11/2023 at 6:53 PM #211386OK danke.
Dies ist mit einem Vertrag.
PRT-IB?
03/11/2023 at 6:54 PM #211387Hallo,
Ich habe gerade dieses System heruntergeladen.
Ich lasse es in der Demo auf SP500 laufen. Ich arbeite daran, es auch auf Short-Positionen funktionieren zu lassen, und es scheint, dass es positiv funktioniert.
Ich habe Ihr ursprüngliches SL und TP geändert, weil es besser als 10 Pips sein könnte. Ich habe auch die Zeitrahmen geändert: 30M statt 15 für Short-Positionen, ich habe einen 3M-Zeitrahmen für den Trigger hinzugefügt und 1M als Standard belassen.
Es scheint ganz gut zu funktionieren
Could you post your code?
03/11/2023 at 7:04 PM #21138803/11/2023 at 7:04 PM #211389Phoentzs, you did not ask for it, but in the first screenshot you see the mouse at the bottom on ~ half September 2022. It is where the zero line is (1M bars were used here).
The second screenshot shows where you would have started backtesting. This is where the deepest dip is. Thus, quite over-optimized, I’d day.
Of course with this I am referring to my other post from this morning. And Yes, I know that you like to regularly re-optimize, so no problem. The fun is that you can see by this that indeed it is over-optimized. I use this to test myself (did I really not over-optimize too much ?). It requires one thing only : never optimize over that spare bars available (200K bars back up to 1M back).03/11/2023 at 7:20 PM #21139303/11/2023 at 8:01 PM #21139703/11/2023 at 8:19 PM #21140003/12/2023 at 4:02 AM #211401Which TF are you referring to ? 15 minutes or 1 minute ?
I use both in the one strategy and I never ever – even want to – change it. That put differently : in my view it is not the way to re-optimize such (entry-dependent) things. But I already told : you think differently here and that is fine. -
AuthorPosts
Find exclusive trading pro-tools on