NexusFi: Find Your Edge


Home Menu

 





MC Traders dynamic index -> conveting to MC


Discussion in MultiCharts

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




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

Does anyone know how to convert the above indicator from NT7 to multicharts
https://nexusfi.com/free_downloads/ninjatrader-7/indicators/799-download.html


Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Netherlands & Germany Surge as World Cup Field Narro …
Prediction Markets & Event Contracts
Beijing Summit Closes: Xi Pledges Hormuz Help -- $1.14B …
Prediction Markets & Event Contracts
El Clasico Draws $9.2M in Prediction Market Action -- Bi …
Prediction Markets & Event Contracts
April Jobs Beat Flips Fed Hike Odds Past 52% for First T …
Traders Hideout
Thanks Mike. Godspeed.
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
16 thanks
Darmok and Jalad at Tanagra
3 thanks
CME Expands 24/7 Trading to WTI Crude Oil and Gold -- We …
1 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 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
Thanked by:
  #4 (permalink)
 yiman 
London
 
Experience: Intermediate
Platform: ninjatrader, multicharts, MT4
Broker: IB, PFG Best
Trading: 6E, EMD, TF
Posts: 266 since Jul 2009
Thanks Given: 111
Thanks Received: 160

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:	541
Size:	43.8 KB
ID:	122026  
Reply With Quote
  #6 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

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 X 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,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

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 X 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
Thanked by:




Last Updated on September 28, 2020


© 2026 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 - Downloads - Top
no new posts