logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
nasdaqtrader  
#1 Posted : Saturday, November 12, 2011 6:01:28 PM(UTC)
nasdaqtrader

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 2/2/2005(UTC)
Posts: 307

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
Does anyone have the following formula to use within MetaStock ADX Mastery by Ken Calhoun
Regards, Frank Koenig Trade Like a Pro Trend is your Friend
nasdaqtrader  
#2 Posted : Saturday, November 12, 2011 6:11:53 PM(UTC)
nasdaqtrader

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 2/2/2005(UTC)
Posts: 307

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
Attached is the article from Active Trader magazine explainig the ADX Volume Breakout scan. Or if anyone has the ADX Mastery class from Ken Calhoun. I hope someone has the formula. And can you tell me how successful you are with it. Thank You
Regards, Frank Koenig Trade Like a Pro Trend is your Friend
jjstein  
#3 Posted : Saturday, November 12, 2011 11:04:47 PM(UTC)
jjstein

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/13/2005(UTC)
Posts: 715
Location: Midwest, USA

Was thanked: 1 time(s) in 1 post(s)
Your link doesn't work.

nasdaqtrader  
#4 Posted : Sunday, November 13, 2011 5:33:45 PM(UTC)
nasdaqtrader

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 2/2/2005(UTC)
Posts: 307

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
jjstein, the file is in a PDF file can you tell me how I can get the pdf file attached Frank
Regards, Frank Koenig Trade Like a Pro Trend is your Friend
jjstein  
#5 Posted : Sunday, November 13, 2011 6:41:56 PM(UTC)
jjstein

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/13/2005(UTC)
Posts: 715
Location: Midwest, USA

Was thanked: 1 time(s) in 1 post(s)
You could try IMGUR, it's pretty simple and works well for me. Drag from Windows Explorer to browser window, hit UPLOAD, then click on the BBCODE icon to Copy to clipbarod, then Paste put a link in the msg.

nasdaqtrader  
#6 Posted : Sunday, November 13, 2011 6:52:35 PM(UTC)
nasdaqtrader

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 2/2/2005(UTC)
Posts: 307

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
jjstein I just sent the pdf to your email, did you receive it/ Frank
Regards, Frank Koenig Trade Like a Pro Trend is your Friend
jjstein  
#7 Posted : Sunday, November 13, 2011 7:42:56 PM(UTC)
jjstein

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/13/2005(UTC)
Posts: 715
Location: Midwest, USA

Was thanked: 1 time(s) in 1 post(s)
Yes, here's the link.

Isn't this similar to the thread of a few weeks ago, ADX Volume Breakout Scan, without the volume criteria?

nasdaqtrader  
#8 Posted : Monday, November 14, 2011 5:04:27 AM(UTC)
nasdaqtrader

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 2/2/2005(UTC)
Posts: 307

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
Sort of except on the scan have the ADX level appear say over 40 instead of 1. The 15 day high which is? etc..
Regards, Frank Koenig Trade Like a Pro Trend is your Friend
jjstein  
#9 Posted : Monday, November 14, 2011 11:12:29 AM(UTC)
jjstein

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/13/2005(UTC)
Posts: 715
Location: Midwest, USA

Was thanked: 1 time(s) in 1 post(s)
I "commented" out the volume criteria, and made the other parameters flexible. It doesn't give a lot of signals:

{ _ADX Breakout }
Display:=Input("Display 0=Indicator 1=Signal 2=Season",0,2,1);
Lookback:=Input("New high",1,100,15);
AdxBars:=Input("ADX Periods",2,100,13);
ADXBuy:=Input("ADX Buy",2,100,40);
ADXSell:=Input("ADX Sell",2,100,30);

Cond1:=ADX(AdxBars)>ADXBuy;
Cond2:=If(Lookback=0,1,H>Ref(HHV(H,Lookback),-1));
{Cond3:=V>Ref(V,-1)*1.3 OR V<Ref(V,-1)*0.7;}
Cond4:=PDI(AdxBars)>MDI(AdxBars);

Buy:=Cond1*Cond2{*Cond3}*Cond4;
Sell:=ADX(AdxBars)<ADXSell;

{Filter repeat signal, 1=Buy -1=Sell}
init:=Cum(IsDefined(Buy+Sell))=1;
Season:=ValueWhen(1,Buy-Sell<>0 OR init,Buy)*2-1;
Signal:=If(Season<>Ref(Season,-1),Season,0);

{ Display }
If(Display=1,Signal,If(Display=2,Season,ADX(AdxBars)));


nasdaqtrader  
#10 Posted : Tuesday, November 15, 2011 5:01:05 AM(UTC)
nasdaqtrader

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers, Unverified Users
Joined: 2/2/2005(UTC)
Posts: 307

Thanks: 7 times
Was thanked: 3 time(s) in 3 post(s)
Jonathan, Thank You is this for the indicator ? or Exploration? Do you have any opinion on the ETS trading system is it worth it for day trading can you give me any other plugins that are worth it for intrday day and swing trading? Thanks again Frank K
Regards, Frank Koenig Trade Like a Pro Trend is your Friend
jjstein  
#11 Posted : Tuesday, November 15, 2011 2:27:51 PM(UTC)
jjstein

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 5/13/2005(UTC)
Posts: 715
Location: Midwest, USA

Was thanked: 1 time(s) in 1 post(s)
Frank,

>>Thank You is this for the indicator ? or Exploration?

This is an indicator. For Explorations, you can either:

1. Use FmlVar("ADX Breakout","Signal")=1 for BUY and FmlVar("ADX Breakout","Signal")=-1 for SELL.

...OR...

2. Copy & Paste the code, then change all the lines with INPUT() to "hardcode", like this:

AdxBars:=Input("ADX Periods",2,100,13);

...becomes...

AdxBars:=13;


>>Do you have any opinion on the ETS trading system

Have never used it.


>>any other plugins that are worth it for intrday day and swing trading?

I only trade EOD. So, if your swing trading is intraday, I can't say much.

The stuff Equis sells are mostly covered by a 30-day return, but my concern would be testing them. The Metastock System Tester does NOT give overall stats (portfolio testing), it just "basket tests" everything -- there's no way to compare one system to another. Also, if you "optimize" -- unless done right, reserving data for testing out-of-sample -- you're just "curve-fitting", a sure way to lose.

I'd use TradeSim for testing, instead -- read "The Search for the Holy Grail Trading System". Note that it does NOT come with any ready-to-trade systems.

If you want a testing tool with a ready-to-trade system -- something to use immediately -- download VSTfree, the Visual Strategy Trader. There is a customizable addon at the user-run blog. Its "big brother", VSTpro, adds stops, robust optimization, templates & indicators for several dozen trading strategies, a private support forum, etc.

Both are pricey, and both have a learning curve.

FWIW, there's only one book I've found dedicated to evaluating Metastock Indicators, "The Encyclopedia of Technical Market Indicators". The author told me he used the "walk-forward" method in the System Tester, on the DJ Indices for testing in his research. Given the huge size of the book, I cannot imagine how much time & effort it took to write.

Geez, I sound like an advertisement...

Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.