Home › Forums › Trading System Mentor Course Community › Progress Journal › Progress So Far
- This topic is empty.
-
AuthorPosts
-
May 5, 2016 at 10:34 pm #103689Stephen JamesMember
Luke, you dollar stop is correct as the dollar amount is just subtracted from price.
The % stop uses 1-Param(“Trailing Stop %”,20,1,100,0.1)/100 simply to see the adjustable parameter as the correct % level.
So the actual calculation in that line is 1-(20/100)Its the same as 0.8 so you could use H * 0.8 to get the 20% stop level instead of the extra coding required to work out 20% then subtract from price.
June 2, 2016 at 8:07 am #103556JulianCohenParticipantI am trying to improve a mean reversion system that has 10% CAGR, 16% DDs, and a Ave Profit/Loss of .57%
Any suggestions on ways to make the ave Profits higher than the ave Losses? Just generally I mean.
It is based on a Connors/Alvarez system that is:
//Enter
//C > MA(200)
//VIX 5% or more above its 10day MA.
//2 day RSI < 5
//Maybe add 3 lower lows
//Enter on limit order .25ATR(10) below low (try close) on next day//Exits
//Exit if VIX 5% or more below 10day MA
//Close higher than previous 2 days
//RSI(2) > 65, 70 or 75
//Exit open next dayJune 2, 2016 at 9:52 am #103557ScottMcNabParticipantFound (gross generalisation) that increasing size of pullback needed for buy limit order up to 0.8 to 1.2*atr reduces maxxDD (as well as trade frequency unfortunately)
I also found exits based on next open or close>ref(c,-1) (or similar variations) seemed to work better for me than those based on indicators suchs as RSI/PDI/MDI etc
June 2, 2016 at 11:48 am #104107JulianCohenParticipantThanks Scott. I’ll experiment with that and see how I go. Maybe I’ll try removing all the exits except c > ref(c,-1) and see how that goes. I’m trying to work out how long I should stay in a mean reversion trade (in general)
June 2, 2016 at 9:40 pm #103558Nick RadgeKeymasterQuote:I’m trying to work out how long I should stay in a mean reversion trade (in general)I like hopping in and out quickly then getting onto the next trade. Keeps exposure down.
That said many others here are using profit target type exits.
Don’t forget that you can send your system to me to help enhance. Just let me know.
June 3, 2016 at 12:46 am #103559TrentRothallParticipantQuote:Maybe I’ll try removing all the exits except c > ref(c,-1) and see how that goes.Maybe do the same with the entry criteria, strip it back and just have 1 or 2 rules and start from there instead of 4 or 5.
June 3, 2016 at 9:53 am #103560ScottMcNabParticipantSaid’s post has some great info on the impact of different exits with MRVs
June 5, 2016 at 1:13 pm #104106SaidBitarMemberJulian Cohen wrote:I am trying to improve a mean reversion system that has 10% CAGR, 16% DDs, and a Ave Profit/Loss of .57%Any suggestions on ways to make the ave Profits higher than the ave Losses? Just generally I mean.
It is based on a Connors/Alvarez system that is:
//Enter
//C > MA(200)
//VIX 5% or more above its 10day MA.
//2 day RSI < 5
//Maybe add 3 lower lows
//Enter on limit order .25ATR(10) below low (try close) on next day//Exits
//Exit if VIX 5% or more below 10day MA
//Close higher than previous 2 days
//RSI(2) > 65, 70 or 75
//Exit open next dayMaybe it will be good idea to test each system (condition) as a separate system, then you start combining them one by one and see the effect of each on the other.
June 5, 2016 at 1:52 pm #104128JulianCohenParticipantOK that’s a good idea..thanks
June 5, 2016 at 10:34 pm #104129LeeDanelloParticipantWhen you say you test each condition in a separate system, what do use as the base system?
June 5, 2016 at 10:39 pm #103561Nick RadgeKeymasterWhy use a different base system? If you’re testing apples vs apples then stick with them apples.
TradeStation has a great way of adding and removing elements of a system without adjusting any other parts. I could separately code 10 different exit methods then add/remove to any entry criteria.
I would use a base code strategy then test each exit individually.
June 6, 2016 at 6:42 am #104132JulianCohenParticipantYes I’m going to code up the whole system, and then strip it back to one entry and one exit, and go through and see the effect of adding and subtracting different entries and exits. I might even get organised enough to write it all down and report the results!
-
AuthorPosts
- You must be logged in to reply to this topic.