Trading System - High Probablility Trading

Discuss Trading System - High Probablility Trading at the MetaStock within the Traderji.com - Discussion forum for Stocks Commodities & Forex; I just finished reading the book “High Probability Trading” by Marcel Link. In the book, ...


Go Back   Traderji.com - Discussion forum for Stocks Commodities & Forex > TOOLS & RESOURCES > Software > MetaStock
Register Blogs FAQ Chat Room [4] Search Today's Posts Mark Forums Read


Welcome to the Traderji.com - Discussion forum for Stocks Commodities & Forex.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features.

By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please read the FAQ.

Reply
 
Thread Tools
Sponsored Links
  #1  
Old 28th August 2007, 04:37 AM
Member
 
Join Date: Jun 2007
Posts: 11
traderbrazil is on a distinguished road
Default Trading System - High Probablility Trading



I just finished reading the book “High Probability Trading” by Marcel Link.
In the book, he describes a very simple trading system which seems quite interesting:

Long Signal – break above highest high of last 10 bars plus 0,5 standard deviation
Short Signal – just the opposite
EXITs:
If ADX > 30 exit on the cross of moving averages (10 and 35)
If ADX < 20 exit after 10 bars
If ADX between 20-30 exit when Stochastics reach overbought territory (exit Long when SlowD (14) > 85 //// exit Short when SlowD (14) < 15)

I would appreciate if somebody could help translating this system into Metastock as I'm not really familiar with MetaStock language.

Best regards,
Traderbrazil

Reply With Quote
  #2  
Old 27th September 2007, 03:27 PM
Member
 
Join Date: Mar 2006
Posts: 34
bluesea is on a distinguished road
Question Re: Trading System - High Probablility Trading

Quote:
Originally Posted by traderbrazil View Post
I just finished reading the book “High Probability Trading” by Marcel Link.
In the book, he describes a very simple trading system which seems quite interesting:

Long Signal – break above highest high of last 10 bars plus 0,5 standard deviation
Short Signal – just the opposite
EXITs:
If ADX > 30 exit on the cross of moving averages (10 and 35)
If ADX < 20 exit after 10 bars
If ADX between 20-30 exit when Stochastics reach overbought territory (exit Long when SlowD (14) > 85 //// exit Short when SlowD (14) < 15)

I would appreciate if somebody could help translating this system into Metastock as I'm not really familiar with MetaStock language.

Best regards,
Traderbrazil
Dear Traderbrazil,

plz give lttle dtl abt the short set up only vice versa is confusing. Secondly what do u mean by "0,5 standard deviation"?? What is the period for the stnd div calculation? is it open, 5 period ?? Plz also mention what is slowD(14)? Is it Stochiastic with 14 period along with 14 period %D ? Standard Stochastic of Metastock is 5,3,3. Plz spcify the values in your proposed stochastic.

bluesea


Last edited by bluesea : 27th September 2007 at 05:29 PM.
Reply With Quote
  #3  
Old 1st October 2007, 08:15 PM
Member
 
Join Date: Jun 2007
Posts: 11
traderbrazil is on a distinguished road
Default Re: Trading System - High Probablility Trading

Quote:
Originally Posted by bluesea View Post
Dear Traderbrazil,

plz give lttle dtl abt the short set up only vice versa is confusing. Secondly what do u mean by "0,5 standard deviation"?? What is the period for the stnd div calculation? is it open, 5 period ?? Plz also mention what is slowD(14)? Is it Stochiastic with 14 period along with 14 period %D ? Standard Stochastic of Metastock is 5,3,3. Plz spcify the values in your proposed stochastic.

bluesea
Hi Blue Sea,

Thank you for your interest!
Short setup: break below lowest low of last 10 bars plus 0,5 standard deviation.
0,5 standard deviation (14 periods) = for example, if the current standard deviation of a stock is 3 you would enter a trade if it goes above its highest high or below its lowest low of the stock value by 1,5.
I meant Stochastichs 14,3,3.

Please let me know if you have more questions.
Once again, thanks for the help.
traderbrazil

Reply With Quote
  #4  
Old 2nd October 2007, 12:15 PM
Member
 
Join Date: Mar 2007
Posts: 10
minnamor is on a distinguished road
Default Re: Trading System - High Probablility Trading

Could this be it?
LE:= H>ref(HHV(H,10),-1)+0.5* Stdev(c,10) ;
SE:= L<ref(LLV(L,10),-1)-0.5* Stdev(c,10);
LX:= (ADX(14)>30 and cross(mov(c,35,e),mov(c,10,e))) or (ADX(14)<20 and Simulation.CurrentPositionAge >=10) or (ADX(14)>20 and ADX(14)<30 and cross(stoch(14,3),85));
SX:= (ADX(14)>30 and cross(mov(c,10,e),mov(c,35,e))) or (ADX(14)<20 and barssince(SE)>=10) or
(ADX(14)>20 and ADX(14)<30 and cross(15,stoch(14,3)));
You do not specify whether book specifies an entry order (next day open, limit, stop?).

Reply With Quote
  #5  
Old 2nd October 2007, 12:21 PM
Member
 
Join Date: Mar 2007
Posts: 10
minnamor is on a distinguished road
Default Re: Trading System - High Probablility Trading

Sorry, entry conditions should be:
LE:= H>ref(HHV(H,10)+0.5* Stdev(c,10),-1);
SE:= L<ref(LLV(L,10)-0.5* Stdev(c,10),-1);

Reply With Quote
  #6  
Old 5th October 2007, 08:02 PM
Member
 
Join Date: Jun 2007
Posts: 11
traderbrazil is on a distinguished road
Default Re: Trading System - High Probablility Trading

Thanks a lot Minnamor!!!

I´ll let you know how it works out.

Good trading!!!
traderbrazil

Reply With Quote
  #7  
Old 5th October 2007, 10:30 PM
Member
 
Join Date: Mar 2007
Posts: 10
minnamor is on a distinguished road
Default Re: Trading System - High Probablility Trading

On second thoughts, when exits are not directly linked to entries, it is preferable to make sure that none of the exit conditions hold at the time of entry. Otherwise you would have a same day exit which is not what you are trying to achieve. One way of doing this could be to specify the entry conditions as follows:

LE:= ... and LX=0;
SE:= ... and SX=0;

Let me know how it goes. Bear in mind that I have not read the book.

Reply With Quote
  #8  
Old 8th October 2007, 05:16 PM
Member
 
Join Date: Mar 2006
Posts: 34
bluesea is on a distinguished road
Default Re: Trading System - High Probablility Trading

Dear traderbrazil,
I worked with the formula given by minnamor. It is generating too many signals. I revised the same and posting now. Signal is much less but it is still not very encouraging.

Long--

LE:= H>Ref(HHV(H,10)+0.5* Stdev(C,10),-1);

a:=H>Ref(HHV(H,10)+0.5* Stdev(C,10),-1);

b:=(ADX(14)>30 AND Cross(Mov(C,35,E),Mov(C,10,E))) OR (ADX(14)<20 AND
BarsSince(LE)>=10) OR (ADX(14)>20 AND ADX(14)<30 AND Cross(Stoch(14,3),85));
state:= If(BarsSince(a)< BarsSince(b),1,0);

state < Ref(state, -1)

Exit long--

LE:= H>Ref(HHV(H,10)+0.5* Stdev(C,10),-1);

a:=H>Ref(HHV(H,10)+0.5* Stdev(C,10),-1);

b:=(ADX(14)>30 AND Cross(Mov(C,35,E),Mov(C,10,E))) OR (ADX(14)<20 AND
BarsSince(LE)>=10) OR (ADX(14)>20 AND ADX(14)<30 AND Cross(Stoch(14,3),85));
state:= If(BarsSince(a)< BarsSince(b),1,0);

state > Ref(state, -1)

Short---
SE:= L<Ref(LLV(L,10)-0.5* Stdev(C,10),-1);
a:=L<Ref(LLV(L,10)-0.5* Stdev(C,10),-1);
b:=(ADX(14)>30 AND Cross(Mov(C,10,E),Mov(C,35,E))) OR (ADX(14)<20 AND BarsSince(SE)>=10) OR
(ADX(14)>20 AND ADX(14)<30 AND Cross(15,Stoch(14,3)));
state:= If(BarsSince(a)< BarsSince(b),1,0);

state < Ref(state, -1)

Exit Short--
SE:= L<Ref(LLV(L,10)-0.5* Stdev(C,10),-1);
a:=L<Ref(LLV(L,10)-0.5* Stdev(C,10),-1);
b:=(ADX(14)>30 AND Cross(Mov(C,10,E),Mov(C,35,E))) OR (ADX(14)<20 AND BarsSince(SE)>=10) OR
(ADX(14)>20 AND ADX(14)<30 AND Cross(15,Stoch(14,3)));
state:= If(BarsSince(a)< BarsSince(b),1,0);

state > Ref(state, -1)


Bluesea

Reply With Quote
Sponsored Links


Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads for: Trading System - High Probablility Trading
Thread Thread Starter Forum Replies Last Post
TrendRider Trading System ravi_s_ghosh Software 4 1st March 2008 12:47 PM
RMO Trading System raj69 Technical Analysis 1 27th December 2006 07:46 AM
High Probability Trading Setups for the Currency Market ahmedalhoseny Books 0 8th November 2006 01:49 AM



All times are GMT +5.5. The time now is 05:53 PM.

Indemnity, Disclaimer & Disclosure Notice:
• By visiting Traderji.com you indicate your acceptance of our Forum Rules Disclaimer & Disclosure and indemnify Traderji.com, its associates and related parties of all claims howsoever resulting from the usage of the forum.
Disclaimer: Trading or investing in stocks & commodities is a high risk activity. Any action you choose to take in the markets is totally your own responsibility. Traderji.com will not be liable for any, direct or indirect, consequential or incidental damages or loss arising out of the use of this information.
Disclosure: The information in this forum is neither an offer to sell nor solicitation to buy any of the securities mentioned herein. The writers may or may not be trading in the securities mentioned.
• All names or products mentioned are trademarks or registered trademarks of their respective owners.
General Content Disclaimer Notice:
In light of our policy of encouraging candid, open exchanges of views and the rapid distribution of information originating from many sources, Traderji.com cannot determine the accuracy of information that may be uploaded to the forum. Opinions, advice and all other information expressed by participants in discussions are those of the author. You rely on such information at your own risk. You are urged to seek professional advice for specific, individual situations and not rely solely on advice or opinions given in the discussions. Since Traderji.com is an open and free discussion forum, any comments made by members of this forum in their posts reflect their own views and not of the owner or administrator of Traderji.com. Thus the owner/administrator indemnify themselves of all claims whatsoever and will not be liable or responsible for any members comments/views in this forum Traderji.com. If you find any objectionable or offensive posts made by members of this forum which you would like to bring to our notice for removal then please Contact Us.
 


Copyright © 2001 - 2008, Traderji.com All Rights Reserved.

Recommended Websites - www.TradersEdgeIndia.com - www.TradingPicks.com - www.HiFiVision.com - www.MasterOfTrading.com - www.NotebookTalk.com