| Coding Forum Collaborate, receive help, or discuss coding related issues. |
![]() | | Tweet | |
| | #9 | ||
![]() | Re: Free EasyLanguage Indicators 1. copy the code into your editor, 2. compile 3. after successful compilation, insert the indicator into your chart. | ||
| |
|
| | #10 | ||
![]() | Re: Free EasyLanguage Indicators Quote:
Hi, I tried to compile your zigzag, but it gave a syntax error at this line: SwingTime(time_s) Error message: Word not recognized by EasyLanguage Unfortunately I am not an EasyLanguage expert, could someone compile it into an indicator? Thanks in advance. | ||
| |
|
| | #11 | ||
![]() | Re: Free EasyLanguage Indicators Quote:
SwingTime is a declared variable. It should not give you problem. That leaves only time_s. But this is a reserved word, i.e. the word is built into TradeStation and MultiCharts. | ||
| |
|
| | #12 | ||
![]() | Re: Free EasyLanguage Indicators Quote:
change SwingTime(time_s) ; to SwingTime(0) ; . | ||
| |
|
| | #13 | ||
![]() | Re: Free EasyLanguage Indicators Quote:
the chart will give you a whole new vision. ;-) | ||
| |
|
| | #14 | ||
![]() | Re: Free EasyLanguage Indicators Quote:
Unfortunately, Tradestation (TS) does not have timing in seconds resolution and time_s is not a reserved word in TS EasyLanguage (EL). so you should preface a lot of your MC EL trendline code by noting that it may not be TS compatible. For example, most of the functions with seconds resolution in MC, such as time_s, TL_SetEnd_s, TL_SetBegin_s etc need to be replaced with their equivalent TS versions such as: time, TL_SetEnd, TL_SetBegin. Another caveat is that MC can handle EL errors, especially trendline code errors, without throwing up exception as much as TS. What you will find is that TS will often not plot MC trendline codes at all and you have to debug the program completely when moving from MC to TS. | ||
| |
|
| | #15 | ||
![]() | Re: Free EasyLanguage Indicators Quote:
Somehow I always thought time_s is a standard reserved word in TradeStation. In that case, I better make 2 versions of each code, if seconds are involved. | ||
| |
|
| | #16 | ||
![]() | Re: Free EasyLanguage Indicators This program marks the High and Low of n bars back. Useful as a guide for stops, break outs, scalping, etc. The number will reverse color when the price breaches the bracket. . | ||
| |
|
![]() |
| Tags |
| code, eld, free, indicator, technical analysis |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Buy at Open with Easylanguage | cleon | Coding Forum | 5 | 03-02-2011 12:16 PM |
| Some EasyLanguage Help Please | jjthetrader | Coding Forum | 8 | 06-02-2008 05:20 PM |
| Easylanguage and Script Help | darknite999 | Coding Forum | 49 | 04-15-2008 08:37 AM |
| Labels in EasyLanguage | keymoo | Coding Forum | 7 | 03-24-2007 03:37 PM |