Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Tams

Free EasyLanguage Indicators

Recommended Posts

I will be sharing my EasyLanguage Indicators here.

 

Some of the codes are of my own creation.

Others are public license open source stuff that I have modified.

Share this post


Link to post
Share on other sites

ZigZag JJs

 

A must have for all Price Action traders!

 

There are quite a few versions of ZigZag on the web.

I like this version because it is very sensitive.

 

The author is unknown. If you know of him, please post his credit here.

 

The original version only works in minute, and slower fractals.

I have modified the code to work with second charts, tick charts and volume bar charts.

.

ZigZag.gif.63b0a9e5b972f2c2fe384b838458f296.gif

ZigZag_JJs.txt

Edited by Tams

Share this post


Link to post
Share on other sites

Price Action HH / LL with horizontal lines

 

Another indicator for Price Action traders.

 

This popular indicator labels HH / LL on the chart.

 

I have added the option to show horizontal lines at HH / LL points,

so that you can visualize the Support / Resistance areas.

.

HH_LL_w_Lines.gif.ae3fe01a5c9356290c6faab09565b889.gif

HH_LL_Line.txt

Share this post


Link to post
Share on other sites

Thanks for sharing. I particularly love the HH/LL indicator. So many new traders can't grasp this concept and to have it literally spelled out for them is a very powerful learning tool.

 

Kudos to you!

Share this post


Link to post
Share on other sites
fyi - on compile with the HH/LL darkyellow isn't recognized by TS so you'll need to change it to like red or green to get it verified.

Thanks for the heads up.

My mistake; I use MultiCharts, I did not know DarkYellow is only supported in MultiCharts.

 

For the benefit of all users, attached is a list of EasyLanguage supported colors.

.

EasyLanguage_colors.thumb.gif.98db3cc43df6c7a21181f414f6d34146.gif

Share this post


Link to post
Share on other sites

I haven't actually gotten it to work in TS yet.... what do I need to make it into... an indicator, show me?

 

I've tried a couple different things but haven't gotten it to show up on the charts yet.

Share this post


Link to post
Share on other sites

yes, you need to make it an indicator.

 

1. copy the code into your editor,

2. compile

3. after successful compilation, insert the indicator into your chart.

Share this post


Link to post
Share on other sites
yes, you need to make it an indicator.

 

1. copy the code into your editor,

2. compile

3. after successful compilation, insert the indicator into your chart.

 

 

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.

Share this post


Link to post
Share on other sites
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.

 

What program are you using?

 

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.

Share this post


Link to post
Share on other sites
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.

 

you can try this: replace time_s with a zero.

 

change

SwingTime(time_s) ;

 

to

 

SwingTime(0) ;

.

Share this post


Link to post
Share on other sites
Thanks for sharing. I particularly love the HH/LL indicator. So many new traders can't grasp this concept and to have it literally spelled out for them is a very powerful learning tool.

Kudos to you!

 

if you combine ZigZag with the HH/LL indicator...

the chart will give you a whole new vision.

 

;-)

Share this post


Link to post
Share on other sites
That leaves only time_s. But this is a reserved word, i.e. the word is built into TradeStation and MultiCharts.

 

Thank you for your contributions, Tam, and welcome to the forum.

 

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.

Share this post


Link to post
Share on other sites
Thank you for your contributions, Tam, and welcome to the forum.

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.

 

Thanks for the heads up.

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.

Share this post


Link to post
Share on other sites
HL Bracket v2.2

 

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.

.

 

Hi Tams,

 

I tried to compile your HH-LL EasyLanguage text in TS and renamed the colours into red and green. The indicator was sucesfully compiled, but.. when I imported it in TS I just saw an empty window. I changed the format in such way that the indicator should plot in the price graph, but with no visible result. Could someone tell me what I am doing wrong? I have attached the indicator in .eld format using green and red as preferred colours.

HH_LL.ELD

Share this post


Link to post
Share on other sites

there is some re-coding you will need to do on his HH-LL eld. Although its an eld, its from Multicharts and appears to have some "disappearing" act for products that have small values. e.g it appears for HangSeng but disappears for me for USDJPY.

Share this post


Link to post
Share on other sites
Hi Tams,

I tried to compile your HH-LL EasyLanguage text in TS and renamed the colours into red and green. The indicator was sucesfully compiled, but.. when I imported it in TS I just saw an empty window. I changed the format in such way that the indicator should plot in the price graph, but with no visible result. Could someone tell me what I am doing wrong? I have attached the indicator in .eld format using green and red as preferred colours.

 

Please give this a try.

This is the original written in TradeStation.

(It does not have the lines I added.)

.

HH_LL_TradeStation.txt

Edited by Tams

Share this post


Link to post
Share on other sites

Awesome Oscillator

Bill Williams

 

This oscillator is popular with forex traders, but can be applied to any market.

 

Both the AO (Awesome Oscillaor) and AC (Accelarator) are included in this indicator.

Just format the option to either True or False.

 

Bill William had the moving averages set at 5, 34.

I have made it user adjustable, so that you can experiment with your own settings.

 

9464d1234903506-free-easylanguage-indicators-ao_ac.gif

.

AO_AC.gif.3fee9e76e483954efe7aad8fc69575a3.gif

AO_AC_(TS).txt

Edited by Tams

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Similar Content

    • By millonmethod
      Hello everyone!
      I am an advanced trader, with many years of experience (about 15 years - 10 living exclusively from this)
      I am going to give you some tips that you must know:
      There are going to be many people who tell you that trade is easy, that with only crossiing a line  with another one you will win a lot of money.... and that´s not true.  No, Sir, reality is far away from that. Many people who start arrive here with the hope that someone "gives them" a free method, they watch youtube videos thinking that this will give them the "strategy" and in a few days they realize that it does not work for them - they lose money - and then They go looking for a new one ... and so on. YES, IT´S TRUE YOU EARN IN TRADING, A LOT. BUT THINK: for a few to win (10% + any BROKER) many others must lose (90% people). YOU MUST HAVE A MONEY MANAGMENT FORMULA ( you can email me) People study so many years to live on this, not because they are dumb, but to know what they do, when, and have absolute effectiveness. It´s very easy to get lost here: do not disperse, jumping from one to another strategy WILL NEVER give you money, it will only waste your time and make you nervous when trading. PEOPLE WHO CHANGE THEIR METHOD CONSTANTLY : LOOOOSE ALWAYS.   If you have the knowledge to develop it, take your time and do it.  Always try it first on DEMO for at least 2 weeks! If not: search to buy a solid strategy (no you tube videos pleassse ! Avoid losing money! ) This is like any business, it requires some capital to start (capital = money in the broker + solid made /purchased strategy) If you are lost: I RECOMMEND YOU NOT TO WASTE TIME IN YOUTUBE, JOIN PEOPLE WHO HAVE EXPERIENCE AND IF YOU ARE GOING TO BUY A METHOD ... PLEASE !!!! DO NOT BUY 10 BAD AND CHEAP METHODS, SAVE MONEY AND BUY ONLY 1 BUT EXCLUSIVE AND MUST ALLWAYS HAVE SUPPORT !!!!!  Do not buy Signals! They never keep up with constant profits! One week will win and the next will lose. Nothing that does not depend absolutely on you will give you the money you are looking for. And if you do not have a strategy (made or purchased) do not even try PLEASE PLEASE PLEASE: DO NOT USE REAL MONEY! AT LEAST 2 WEEK DEMO FREE HELP HERE!!!!!  IF YOU FOLLOW MY ADVICE YOU WILL BE PART OF THAT 10% WINNER, email me.
      Have a nice trading day
       
       
    • By edakad
      Firebird is an indicator to identify the price spikes in the market. Firebird indicator first calculates a 10-period moving average, then shifts this moving average a certain percentage above and below the 10-period moving average. The shifted averages are drawn on chart as the red and green line. When price touches these lines, price spike is identified. Usually after a price spike, the trend reverses for some time. The indicator can be used to take advantage of this price behaviors. In daily chart usually the 10 period MA is shifted by 2 percent to form the price bands. On lower time frames like Hourly, Four Hour a smaller percentage price shift is used like 0.5% . The important consideration here is most of the price bars must be contained within the upper and lower bands.
      When price reaches above the upper red band, a sell position is opened. When price reaches the lower green band, buy position is opened. Trades can be managed with proper stop loss and take profit. In the picture, Firebird indicator is attached to daily chart of EUR/USD with 2% shift on MA. Note that almost all price bars are within the price bands. And when price extends beyond these bands, price trend reverses and comes back into the bands.

      FireBird.zip
    • By magesvh
      I'm currently using Ninjatrader for my trading. But I have a problem with the Tick Chart and when I use any Indicator. When e.g. the market is very fast or my internet is slow (for a moment), then the value of the candles and indicator is wrong. 
      So I refresh the chart after every finished candle. 
      Does anybody know a software without this problem?
    • By mirko994
      Hello guys,
      Anyone has the code of this indicator?  I am trying to find the logic behind it.
      Trend Magic Indicator FREE
       
      Kind regards,
       
      Mirko

  • Topics

  • Posts

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.