Home › Forums › Trading System Mentor Course Community › Progress Journal › Trents Weekly Journal
- This topic is empty.
-
AuthorPosts
-
May 6, 2016 at 9:19 pm #102684Nick RadgeKeymaster
So it’s important to understand now that you’re doing the day to day running that other psychological issues will start entering, specifically expecting more profits to come forward. 3% in a month is a good result but can seem to be a drag when you are placing and managing trade each and every day.
Summary – don’t start micro managing the strategy and don’t equate it to ‘trading time for money’
May 7, 2016 at 12:50 am #103697TrentRothallParticipantThat’s a good point, another bonus of having done all the testing etc is to be able to look at the journey. For example last year was a great year with 50% return but 7 /12 months was a 3% or less, just have to keep the bigger picture in mind.. i figure anything +ve is a good result. Thanks for that
May 11, 2016 at 1:51 am #102685TrentRothallParticipantGaps always fill right?
4 Open at the moment
May 11, 2016 at 2:46 am #103950AnonymousInactiveHey Trent,
My MRV system picked that one up too.
Which yesterday prompted me to do some testing on gaps.Starting with a gap on the buy set-up bar. For me, about 10% of trades had a gap greater than 1% between the high of the set-up bar and the previous days low.
The win% is basically the same as the rest of the trades, but the payoff ratio is about 30% higher, thus improving the profit factor. Thus for me, I could not find any reason to exclude placing such trades.
I have pasted the code I used below, you just need to add GapFilt to your buy set-up line.
Code:_SECTION_BEGIN(“% Gap Filter”);
//———————————————————————————————————————-
// % Gap Filter
//———————————————————————————————————————-GapPercent = Param(“Gap %”,1,0,20,1);
Gap = ((Ref(Low,-1) – High)/Ref(Low,-1))*100;
GapFilt = Gap > GapPercent;
//———————————————————————————————————————-
_SECTION_END();Then I took a look at the trades that were filled on a gap big enough that the open was below my buy limit using the following code for the LE.
LE = Ref(BuySetUp,-1) AND Open <= Ref(BuyLimit,-1); The only thing I changed was that open must be less than the buy limit price instead of the usual low less than the buy limit price. Again, win% was the same, but payoff ratio is again about 30% higher than the whole sample. What surprised me was that from the full sample, about 20% of trades were filled on the open. So in summary, (for me anyway) trades with gaps either on the set up bar or on entry tend to be goods ones, likely because of the increased volatility. So all in all, I’m sitting tight!
May 11, 2016 at 3:05 am #103953TrentRothallParticipantThanks for that info Oliver that is some good research. I might do the same exercise. Buy as you said volatility seems to be a good thing with MR systems so you just have to take the good with the bad i guess. As Nick says “Next 1000 trades”. Even from my small trade sample size trades with a higher volatility are the better ones.
Might look into it, thanks
May 16, 2016 at 8:16 am #102686TrentRothallParticipantHad another trade today that triggered on Amibroker but not In IB, I don’t think it’s a error its just that the Low was exactly at my buy price and no shares available. Just the way it goes i guess.
5 Open positions at the moment with 2 exits tomorrow
May 16, 2016 at 9:23 pm #102687Nick RadgeKeymasterYou can review what is called “Time & Sales” in TWS. It will show every trade made, at what price and how much traded at that price.
May 16, 2016 at 11:57 pm #102688TrentRothallParticipantThanks Nick will check it out
May 17, 2016 at 7:57 am #103982TrentRothallParticipantGood day today, got few exits coming up tomorrow morning.
1 entry today
2 exits3 exit signals
16 Pending orders4 Open
May 19, 2016 at 7:26 am #102689TrentRothallParticipantAlright it’s all heating up now
During the day i had 12 open positions with approx 25 pending and IB randomly cancelled some orders but not all or not all at once, saying – my equity with loan value of $xxxxxx is insufficient to cover the initial margin requirement of $xxxxx
but it’s not as if i had too much positions on or anything?
Then tonight when i placed the orders it let some go into TWS but cancelled some others?
Any ideas? IB service chat has conveniently been down today
May 19, 2016 at 11:06 pm #102690Nick RadgeKeymasterAre you using a Reg-T account or cash?
Either way any orders that exceed the cash component available will not be allowed to go through.
May 23, 2016 at 4:30 am #102691TrentRothallParticipantA word of warning for anyone developing a system that trades on the ASX with leverage. I discovered that some stocks are not available to buy while using leverage which i was unaware of. I am using 20 positions at 10% of my account so the first 10 positions are not an issue it is just taking the next 10 positions. Luckily this issue wont ruin my system, but it might hurt a bit.
May 25, 2016 at 8:34 am #102692ScottMcNabParticipantAre you able to obtain a listing of those so you can exclude those stocks …both for future trades and also in your backtest to find out how much it hurts ?
May 25, 2016 at 9:02 am #102693TrentRothallParticipantA mate sent me this LIST today but dont think it is correct, Nick might know. It doesn’t have all securities
I am sure it could be coded but would be alot of work!
May 25, 2016 at 10:43 am #102694ScottMcNabParticipantOuch! Quite a list…but how will you know whether it harms the system a little or a lot otherwise ? Are US mkts a possibility or do they have the same restrictions on certain stocks ?
-
AuthorPosts
- You must be logged in to reply to this topic.