NexusFi: Find Your Edge


Home Menu

 





MC Traders dynamic index -> conveting to MC


Discussion in MultiCharts

Updated
      Top Posters
    1. looks_one sanich with 4 posts (0 thanks)
    2. looks_two asanichara with 4 posts (1 thanks)
    3. looks_3 ABCTG with 3 posts (0 thanks)
    4. looks_4 yiman with 2 posts (0 thanks)
    1. trending_up 9,657 views
    2. thumb_up 3 thanks given
    3. group 6 followers
    1. forum 16 posts
    2. attach_file 2 attachments




 
Search this Thread

MC Traders dynamic index -> conveting to MC

  #1 (permalink)
 yiman 
London
 
Experience: Intermediate
Platform: ninjatrader, multicharts, MT4
Broker: IB, PFG Best
Trading: 6E, EMD, TF
Posts: 265 since Jul 2009
Thanks Given: 111
Thanks Received: 158

Does anyone know how to convert the above indicator from NT7 to multicharts

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NexusFi Journal Challenge - April 2024
Feedback and Announcements
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
Request for MACD with option to use different MAs for fa …
NinjaTrader
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Retail Trading As An Industry
67 thanks
NexusFi site changelog and issues/problem reporting
47 thanks
Battlestations: Show us your trading desks!
43 thanks
GFIs1 1 DAX trade per day journal
32 thanks
What percentage per day is possible? [Poll]
31 thanks

  #3 (permalink)
 
Lampert's Avatar
 Lampert 
Calgary, Canada
 
Experience: Intermediate
Platform: Multicharts
Broker: IB, IQFeed
Trading: GC
Posts: 76 since Nov 2011
Thanks Given: 73
Thanks Received: 142


@yiman - I have a Ninja-code phobia , so here are two versions of the Traders Dynamic Index from other forums. The results look the same in the screen shot. If you want this code modified, perhaps you could provide some instructions and a screenshot of what it should look like.



 
Code
// TDI w VolBand - code from traderslaboratory.com March 19, 2009
  
inputs:
	Price( Close ),
	Length( 13 ),
	Vol_bands( 34 );

variables:  MyRSI(0), TraderSignalLine(0 ), MidZone(0), UpZone(0), DnZone(0) ;

MyRSI = Average(RSI( Price, Length ), 2 ) ;
TraderSignalLine = Average( MyRSI, 7 );
Midzone = Average( MyRSI, Vol_bands );
UpZone = MidZone + 1.6185 * StdDev( MyRSI, Vol_bands );
DnZone = MidZone - 1.6185 * StdDev( MyRSI, Vol_bands );
 
Plot1( MyRSI, "RSI" ) ;
Plot2( TraderSignalLine, "TSignalLine" );
Plot3( Midzone, "MidZone" );
Plot4( UpZone, "UpZone" );
Plot5( DnZone, "DnZone" );
Plot6( 68, "68Line" );
Plot7( 50, "50Line" );
Plot8( 32, "32Line" );
 
Code
//  Traders Dynamic Index - code from Forex-TSD.com October 9, 2011
  
Input: Price( Close );
Input: RSIPeriod(13);
Input: PriceLinePeriod(2);
Input: SignalLinePeriod(7);
Input: AverageLinePeriod(34);
Input: LevelH(68);
Input: LevelM(50);
Input: LevelL(32);
vars: RSILine(0);
vars: PriceLine(0);
vars: SignalLine(0);
vars: AverageLine(0);
vars: BandsLineU(0);
vars: BandsLineL(0);
RSILine = RSI( Price, RSIPeriod);
PriceLine = Average (RSILine,PriceLinePeriod);
SignalLine = Average (RSILine, SignalLinePeriod);
AverageLine = Average (RSILine, AverageLinePeriod);
BandsLineU = BollingerBand (RSILine, 34, 1.62);
BandsLineL = BollingerBand (RSILine, 34, -1.62);
Plot1( PriceLine, "PriceLine");
Plot2( SignalLine, "SignalLine");
Plot3( AverageLine, "AverageLine");
Plot4( BandsLineU, "BandsUp");
Plot5( BandsLineL, "BandsDown");
Plot6( LevelH, "LevelHigh");
Plot7( LevelM, "LevelMedium");
Plot8( LevelL, "LevelLow");

Len

Reply With Quote
The following 2 users say Thank You to Lampert for this post:
  #4 (permalink)
 yiman 
London
 
Experience: Intermediate
Platform: ninjatrader, multicharts, MT4
Broker: IB, PFG Best
Trading: 6E, EMD, TF
Posts: 265 since Jul 2009
Thanks Given: 111
Thanks Received: 158

Thanks Len, Ill give those a go

Started this thread Reply With Quote
  #5 (permalink)
asanichara
San Juan Puerto Rico
 
Posts: 4 since Jun 2013
Thanks Given: 0
Thanks Received: 1

@yiman - I have a Ninja-code phobia , so here are two versions of the Traders Dynamic Index from other forums. The results look the same in the screen shot. If you want this code modified, perhaps you could provide some instructions and a screenshot of what it should look like.


Yiman
Can you do the TDI code for multicharts in SEF langauge so i can copy and paste it. I need the simple version, three lines, red , gren and blue. I uploade a screenshot.
Thanks
asanichara

Attached Thumbnails
Click image for larger version

Name:	Screenshot1.png
Views:	428
Size:	43.8 KB
ID:	122026  
Reply With Quote
  #6 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623

Hi asanichara,

as SEF is not a language, but a file extension your request is a bit confusing. The code in this thread should work fine in the regular Multicharts that uses PowerLanguage.
Which version of Multicharts are you using, Multicharts or Multicharts.NET (this would include the SE edition)? If it's the latter the code needs to be rewritten to work in the .NET program (or converted from the NinjaTrader code).

Regards,
ABCTG

Follow me on Twitter Reply With Quote
  #7 (permalink)
asanichara
San Juan Puerto Rico
 
Posts: 4 since Jun 2013
Thanks Given: 0
Thanks Received: 1


ABCTG View Post
Hi asanichara,

as SEF is not a language, but a file extension your request is a bit confusing. The code in this thread should work fine in the regular Multicharts that uses PowerLanguage.
Which version of Multicharts are you using, Multicharts or Multicharts.NET (this would include the SE edition)? If it's the latter the code needs to be rewritten to work in the .NET program (or converted from the NinjaTrader code).

Regards,
ABCTG

Hi there ABCTG
Thanks for your prompt reply. I have the latest version of multicharts(NOT NET). How can i load these tdi codes onto
multicharts. I will need some help to install it. If you need my email and team viewer pass i will send it to you.
Thanks again for your help.
asanichara

Reply With Quote
  #8 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,431 since Apr 2013
Thanks Given: 481
Thanks Received: 1,623

asanichara,

great, this will make it very easy for you. You open the PowerLanguage editor. Go to -> File -> New and select study type Indicator. Choose a name for your study and copy and paste one of the codes from this thread in Lampert's post.
After that click the compile button (or hit F3). Et voilą, you have created your first indicator.
You can redo the steps to add the second code if you want to, too. Just give it a different name.

Regards,
ABCTG



asanichara View Post
Hi there ABCTG
Thanks for your prompt reply. I have the latest version of multicharts(NOT NET). How can i load these tdi codes onto
multicharts. I will need some help to install it. If you need my email and team viewer pass i will send it to you.
Thanks again for your help.
asanichara


Follow me on Twitter Reply With Quote
  #9 (permalink)
asanichara
San Juan Puerto Rico
 
Posts: 4 since Jun 2013
Thanks Given: 0
Thanks Received: 1


ABCTG View Post
asanichara,

great, this will make it very easy for you. You open the PowerLanguage editor. Go to -> File -> New and select study type Indicator. Choose a name for your study and copy and paste one of the codes from this thread in Lampert's post.
After that click the compile button (or hit F3). Et voilą, you have created your first indicator.
You can redo the steps to add the second code if you want to, too. Just give it a different name.

Regards,
ABCTG

Thanks very much for being so kind ABCTC.
I will do it and gave you a feed back.
Thanks again
asanichara

Reply With Quote
  #10 (permalink)
asanichara
San Juan Puerto Rico
 
Posts: 4 since Jun 2013
Thanks Given: 0
Thanks Received: 1



asanichara View Post
Thanks very much for being so kind ABCTC.
I will do it and gave you a feed back.
Thanks again
asanichara

Len and ABCTG
I install the TDI and test for the last few months.
Its working PERFECT.
I am going live as of the 1/2/2014
Thanks again---Also to Big Mike for having this foroum

Reply With Quote
The following user says Thank You to asanichara for this post:





Last Updated on September 28, 2020


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts