Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4






Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
Thread Tools Display Modes
  #11 (permalink)  
Old 03-22-2006, 06:06 AM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 718
Kalenzo is on a distinguished road
Quote:
Originally Posted by kohzadi
Hi Kalenzo
1) Your indicator paints past.
2) Do you have TRIX indicator? I need it.
Thanks
Yes, sherlock, we all see that. Use this one with was attached by newdigital.
Trix was posted on this forum, i think it was in the wma cross thread, but i'm not sure. Try to search a little.
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #12 (permalink)  
Old 03-22-2006, 07:45 AM
kohzadi's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Tehran-IR Iran
Posts: 110
kohzadi is on a distinguished road
Hi Kalenzo (Mr Holmes!)
What is the difference between T3 TRIX in this forum and Metastock TRIX?
see these
Attached Images
File Type: jpg MS.jpg (40.5 KB, 1453 views)
File Type: gif MT.gif (9.9 KB, 1520 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #13 (permalink)  
Old 03-22-2006, 08:27 AM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 718
Kalenzo is on a distinguished road
Quote:
Originally Posted by kohzadi
Hi Kalenzo (Mr Holmes!)
What is the difference between T3 TRIX in this forum and Metastock TRIX?
see these
Our is better lol just kidding
Post the metastock formula, i will check it.
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #14 (permalink)  
Old 03-23-2006, 07:28 AM
kohzadi's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Tehran-IR Iran
Posts: 110
kohzadi is on a distinguished road
I can't get formula.
I think metastock gives some formula no all.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #15 (permalink)  
Old 03-23-2006, 08:11 AM
Junior Member
 
Join Date: Dec 2005
Posts: 10
licho is on a distinguished road
If anybody interested in trying that method taken from Moneytec

Quote:
I trade 18 pairs, use 4h charts and only spend 1h per day reviewing trades. So far have only used 0.5 lots with maximum stops 150 pt (2 - 5% risk). Strike rate is 77%. If I can make over $7500 per month trading half lots risking less than 5%, its easy to see possibility of making $20k or more per month soon. I'm increasing now to full lots, will move on from there.

I know.... early days, will need to see if I can continue to exceed 1500 pt per month.

No-one will believe 238% profit in 4 months. Take 4h GBPJPY chart and add 25 period Hull Moving Average (HMA) with slope coloured for up and down. Add Stochastic Momentum Indicator (SMI) with settings 39,6,75 and signal line 15. See if the chart tells you anything!.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #16 (permalink)  
Old 03-23-2006, 02:04 PM
Member
 
Join Date: Feb 2006
Posts: 81
laserjet is on a distinguished road
Quote:
Originally Posted by licho
If anybody interested in trying that method taken from Moneytec
SMI does not make any sence, may be setting are not correct. HMA is good but it needs some validation or filter indicator.

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #17 (permalink)  
Old 03-23-2006, 03:10 PM
Member
 
Join Date: Oct 2005
Posts: 61
gabroo_munda is on a distinguished road
I have the tradestation code for TRIX...and IMHO it is a good indicator. the code is divided into a function and an indicator. hope somebody will be able to convert it.

Function::::::::::::

Price( numericseries ),
Length( numericsimple ) ; { this input assumed to be a constant >= 1 }

variables:
TRIXRaw( 0 ) ;

TRIXRaw = XAverage( XAverage( XAverage( Log( Price ), Length ) , Length ) , Length ) ;
if CurrentBar > 1 then
TRIX = ( TRIXRaw - TRIXRaw[1] ) * 10000 ;

Indicator::::::::::::::::
inputs:
Price( Close ),
Length( 9 ),
ColorNormLength( 14 ), { Number of bars over which to normalize the indicator
for gradient coloring. See also: comments in function NormGradientColor. }
UpColor( Yellow ), { Color to use for indicator values that are relatively high
over ColorNormLength bars. }
DnColor( Red ), { Color to use for indicator values that are relatively low
over ColorNormLength bars. }
GridForegroundColor( Black ) ; { Color to use for numbers in RadarScreen cells
when gradient coloring is enabled, that is, when both UpColor and DnColor are
set to non-negative values. }

{ Set either UpColor and/or DnColor to -1 to disable gradient plot coloring.
When disabled, Plot1 color is determined by settings in indicator properties
dialog box. Plot2 (ZeroLine) color always comes from indicator properties
dialog box. }

variables:
ApplicationType( 0 ),
TRIXValue( 0 ),
ColorLevel( 0 ) ;

if CurrentBar = 1 then
ApplicationType = GetAppInfo( aiApplicationType ) ;

TRIXValue = TRIX( Price, Length ) ;

Plot1( TRIXValue, "TRIX" ) ;
Plot2( 0, "ZeroLine" ) ;

{ Gradient coloring }
if UpColor >= 0 and DnColor >= 0 then
begin
ColorLevel = NormGradientColor( TRIXValue, true, ColorNormLength, UpColor, DnColor ) ;
if ApplicationType = 1 then { study is applied to a chart }
SetPlotColor( 1, ColorLevel )
else if ApplicationType > 1 then { study is applied to grid app }
begin
SetPlotColor( 1, GridForegroundColor ) ;
SetPlotBGColor( 1, ColorLevel ) ;
end ;
end ;

{ Alert criteria }
if TRIXValue crosses over 0 then
Alert( "Indicator turning positive" )
else if TRIXValue crosses under 0 then
Alert( "Indicator turning negative" ) ;

----------------------------------------------------------------

The XAverage function is a weighted moving average of the prices of the last length bars. This function returns the current value of the exponentially smoothed moving average.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #18 (permalink)  
Old 03-23-2006, 03:17 PM
Member
 
Join Date: Oct 2005
Posts: 61
gabroo_munda is on a distinguished road
Another TRIX formula from Tradestation. made by some programmer. has TRIX and a signal line with it.

inputs:
TRIXLength( 5 ),
SigLineXMALen( 3 ) ;

variables:
EMA1( 0 ),
EMA2( 0 ),
EMA3( 0 ),
TRIXLine( 0 ),
SignalLine( 0 ) ;
EMA1 = XAverage( Close, TRIXLength ) ;
EMA2 = XAverage( EMA1, TRIXLength ) ;
EMA3 = XAverage( EMA2, TRIXLength ) ;
if EMA3[1] <> 0 then
{ Ensure not about to divide by zero }
TRIXLine = 10 * ( EMA3 - EMA3[1] ) / EMA3[1] ;
SignalLine = XAverage( TRIXLine, SigLineXMALen ) ;
Plot1( TRIXLine, "TRIXLine" ) ;
Plot2( SignalLine, "SignalLine" )
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #19 (permalink)  
Old 03-23-2006, 07:54 PM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 718
Kalenzo is on a distinguished road
Quote:
Originally Posted by licho
If anybody interested in trying that method taken from Moneytec
licho mabye u will tell us what do u see when u plot those 2 on chart?
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #20 (permalink)  
Old 03-24-2006, 08:54 PM
Member
 
Join Date: Oct 2005
Posts: 61
gabroo_munda is on a distinguished road
is anyone working on this one??

Quote:
Originally Posted by gabroo_munda
Another TRIX formula from Tradestation. made by some programmer. has TRIX and a signal line with it.

inputs:
TRIXLength( 5 ),
SigLineXMALen( 3 ) ;

variables:
EMA1( 0 ),
EMA2( 0 ),
EMA3( 0 ),
TRIXLine( 0 ),
SignalLine( 0 ) ;
EMA1 = XAverage( Close, TRIXLength ) ;
EMA2 = XAverage( EMA1, TRIXLength ) ;
EMA3 = XAverage( EMA2, TRIXLength ) ;
if EMA3[1] <> 0 then
{ Ensure not about to divide by zero }
TRIXLine = 10 * ( EMA3 - EMA3[1] ) / EMA3[1] ;
SignalLine = XAverage( TRIXLine, SigLineXMALen ) ;
Plot1( TRIXLine, "TRIXLine" ) ;
Plot2( SignalLine, "SignalLine" )
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
stochastic, momentum, stochastic momentum index, stochastic momentum indicator, Stochastic momentum, SMI.mq4, stochastic momentum index mt4, Stochastic Momentum Indicator Formula, stochastic indicator, stochastic momentum index formula, stochastic momentum metatrader, momentum indicator formula, momentum indicator, metatrader smi, trix index, stochastic momentum formula, smi indicator, harmonic stochastic indicator, STOCHASTIC MOMENTUM INDEX indicator, chande's momentum indicator for MT4

Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Momentum indicator droesparky Setup Questions 40 09-08-2009 04:31 AM
Chande's Dynamic Momentum Index rgibsongss Indicators - Metatrader 4 4 01-27-2009 06:11 PM
Stochastic Momentum Indicator Needed taipan09 Indicators - Metatrader 4 1 06-05-2006 01:29 PM
Stochastic Momentum needed Delta Indicators - Metatrader 4 2 04-28-2006 07:23 PM


All times are GMT. The time now is 01:13 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.