| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #1 | ||
![]() | Can Anyone Post the Origianl TS ADX Code? Can't find the code anywhere online. I was wondering if anyone would be so kind to just copy/paste the original code? Thank you in advance!!! | ||
| |
|
| | #2 | ||
![]() | Re: Can Anyone Post the Origianl TS ADX Code? Length( 14 ) ; variables: var0( 0 ) ; var0 = ADX( Length ) ; Plot1( var0, "ADX" ) ; condition1 = var0 > var0[1] and var0[1] <= var0[2] ; if condition1 then Alert( "Indicator turning up" ) else begin condition1 = var0 < var0[1] and var0[1] >= var0[2] ; if condition1 then Alert( "Indicator turning down" ) ; end | ||
| |
|
| The Following User Says Thank You to Tams For This Useful Post: | ||
daedalus (04-20-2009) | ||
| | #3 | ||
![]() | Re: Can Anyone Post the Origianl TS ADX Code? Quote:
Code: inputs:
Length( 14 ) ;
variables:
ADXValue( 0 ) ;
ADXValue = ADX( Length ) ;
Plot1( ADXValue, "ADX" ) ;
{ Alert criteria }
if ADXValue > ADXValue[1] and ADXValue[1] <= ADXValue[2] then
Alert( "Indicator turning up" )
else if ADXValue < ADXValue[1] and ADXValue[1] >= ADXValue[2] then
Alert( "Indicator turning down" ) ;
{ ** Copyright (c) 1991-2003 tradestation Technologies, Inc. All rights reserved. **
** tradestation reserves the right to modify or overwrite this analysis technique
with each release. ** } hth | ||
| |
|
| The Following User Says Thank You to zdo For This Useful Post: | ||
daedalus (04-20-2009) | ||
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Restricted Post? | lclark | Automated Trading | 4 | 03-21-2009 09:03 AM |
| 3 Post Policy | BlowFish | Support Center | 10 | 12-04-2008 02:07 AM |
| Post or else | P R_R D | Introduce Yourself | 0 | 12-18-2007 04:51 PM |
| Hi everybody! My first post | greasy_pancakes | Introduce Yourself | 1 | 12-17-2007 02:51 PM |
| Post Deleted | Sublime | Support Center | 6 | 04-16-2007 09:01 AM |