Welcome to the Traders Laboratory Forums.
Forex Trading Laboratory Discussion forum for Forex traders - all forex pairs

Reply
Old 02-13-2011, 08:57 PM   #1

Join Date: Feb 2011
Posts: 2
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Tradestation Indicators

Hello fellow traders. I am a tradestation user looking for a system called trendlogicpro or tlx pro. It is supposed to be designed for tradestation only. I have an account with tradestation and would like to know if anyone can tell me about the tlx pro system at (URL removed by Moderator) or post them here so I can try them.
I will return the favor.
Jim M
jimm is offline  
Reply With Quote
Old 02-13-2011, 09:19 PM   #2

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,477 Times in 912 Posts

Re: Tradestation Indicators

Quote:
Originally Posted by jimm »
Hello fellow traders. I am a tradestation user looking for a system called trendlogicpro or tlx pro. It is supposed to be designed for tradestation only. I have an account with tradestation and would like to know if anyone can tell me about the tlx pro system at (URL removed by Moderator) or post them here so I can try them.
I will return the favor.
Jim M
I have friends who tried it.
He does not recommend it.
A waste of time and money, he said.
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
Old 02-18-2011, 12:02 PM   #3

Join Date: Feb 2011
Posts: 27
Ignore this user

Thanks: 0
Thanked 3 Times in 3 Posts

Re: Tradestation Indicators

Does anybody have a JMA for tradestation? I would like to try it out on the Russell.

Thanks
pitrader is offline  
Reply With Quote
Old 03-13-2011, 05:40 PM   #4

Join Date: Dec 2008
Location: Dexter
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Tradestation Indicators

pitrades,

I have attached HMA.ELD, but I am not sure it has been attached to this post, so here is the EasyLanguage code for TS V9.0:

{jtHMA - Hull Moving Average Indicator}
{Author: Atavachron}
{May 2005}

{
Inputs:
-------
price: the time series being smoothed, usually Close, High, etc,
but could be RSI(Close, 25) for example.
length: the length of the MA, pretty meaningless in the normal sense
of moving averages, as this quantity is heavily modified
in the code. You need to experiment, do not just use a setting
of 20 because that is what works for you with Simple Moving Averages.
zeroLine: if you are using this in an indicator pane, you might
want to display a centre line of some sort, ths allows
one to set its value
zeroVisible: boolean variable, determines whether the centre line
(zeroLine) is plotted.
upColour: If you wish to differentiate upward movements by colour coding.
downColour: If you wish to differentiate downward movements by colour coding.
colourDeltaBar: Set this to 1 if you wish the colour change to be effective on
the actual bar where the direction change occurred.
Set this to 0 for default behaviour. All other values
are pretty meaningless.
}

[intrabarordergeneration=F alse]

Inputs: price(Close), length(10),
zeroLine(0), zeroVisible(false),
upColour(Blue), downColour(Red), colourDeltaBar(1);

vars: HMA(0);

HMA = jtHMA(price, length);

Plot1(HMA, "jtHMA");

If ZeroVisible = true then
Plot2(zeroLine, "Zero");

{ Color criteria }
if (HMA > HMA[1]) then
SetPlotColor[colourDeltaBar](1, upColour)
else if (HMA < HMA[1]) then
SetPlotColor[colourDeltaBar](1, downColour);
Attached Files
File Type: eld HMA.ELD (12.2 KB, 63 views)
paulw517 is offline  
Reply With Quote
Old 08-01-2011, 03:33 PM   #5

Join Date: Aug 2011
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Tradestation Indicators

I am still using tradestation 8.6 do you have the HMA indicator for the older versions of tradestation?
thebiglar is offline  
Reply With Quote
Old 10-01-2011, 06:53 AM   #6

Join Date: Sep 2011
Posts: 1
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: Tradestation Indicators

Hello fellow traders. I am a tradestation user looking for a system called trendlogicpro or tlx pro. It is supposed to be designed for tradestation only. I have an account with tradestation and would like to know if anyone can tell me about the tlx pro system at or post them here so I can try them.
I will return the favor.
mingmei0909 is offline  
Reply With Quote

Reply

Tags
tradestation tlx pro

Thread Tools
Display Modes Help Others By Rating This Thread
Help Others By Rating This Thread:


Similar Threads
Thread Thread Starter Forum Replies Last Post
Oec Indicators texbest Open E Cry 8 10-03-2009 05:35 PM
Convert Tradestation Indicators to Esignal chrisleonard Coding Forum 3 07-05-2009 09:00 AM
Quick Question About Tradestation Indicators trbates Coding Forum 4 12-25-2008 03:40 PM
Question about Tradestation Indicators zhao77 Coding Forum 4 02-13-2008 06:41 PM
TRO Indicators for TradeStation TheRumpledOne Trading Indicators 11 08-29-2007 09:57 AM

All times are GMT -4. The time now is 01:16 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.