NexusFi: Find Your Edge


Home Menu

 





Anyone Have an EasyLanguage Support Resistance Fractal Levels Indicator


Discussion in EasyLanguage Programming

Updated
      Top Posters
    1. looks_one olobay with 3 posts (0 thanks)
    2. looks_two leescharf with 2 posts (0 thanks)
    3. looks_3 Quick Summary with 1 posts (0 thanks)
    4. looks_4 caballer with 1 posts (0 thanks)
    1. trending_up 4,715 views
    2. thumb_up 0 thanks given
    3. group 5 followers
    1. forum 8 posts
    2. attach_file 1 attachments




 
Search this Thread
  #1 (permalink)
caballer
New York City, NY/USA
 
Posts: 3 since Jan 2013
Thanks Given: 0
Thanks Received: 1

Hello,

I'm looking for an EasyLanguage Support Resistance Fractal Levels Indicator like this one:

wwwDOTtradingviewDOTcom/script/RQnLfaNE-Swing-high-low-support-resistance-by-Patternsmart-com/

It is based on the Fractals indicator, but it draws lines instead of one dot for each fractal.

There is an old metatrader indicator that does the same thing, called Kay Support Resistance, or Barry Support Resistance.

Can anyone help?

Thanks


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Penalties in Budapest, Peace Deadline in Tehran: Arsenal …
Prediction Markets & Event Contracts
CFTC Opens First COT Report Review in 20 Years -- Asks W …
Traders Hideout
CFTC Approves First US Bitcoin Perpetual Futures -- Kals …
Traders Hideout
UCL Final Kicks Off at Noon ET: PSG at 56.5% as Iran May …
Prediction Markets & Event Contracts
Trump Lands in Beijing on CPI Day: Iran Peace Expires To …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
15 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
1 thanks
30 Sessions
1 thanks
  #3 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011



caballer View Post
Hello,

I'm looking for an EasyLanguage Support Resistance Fractal Levels Indicator like this one:

wwwDOTtradingviewDOTcom/script/RQnLfaNE-Swing-high-low-support-resistance-by-Patternsmart-com/

It is based on the Fractals indicator, but it draws lines instead of one dot for each fractal.

There is an old metatrader indicator that does the same thing, called Kay Support Resistance, or Barry Support Resistance.

Can anyone help?

Thanks

I think the Chaos Fractals indicator comes with Multicharts.


Attached Files
Elite Membership required to download: Chaos.pla
Reply With Quote
  #4 (permalink)
 leescharf 
New York, NY
 
Experience: Beginner
Platform: TradeStation
Trading: Futures
Posts: 17 since Aug 2020
Thanks Given: 4
Thanks Received: 8


olobay View Post
I think the Chaos Fractals indicator comes with Multicharts.

Hi,

I have been looking for the same thing for Tradestation... plotting of the support/resistance on the bars/chart.

Anyone have intel?

TIA!

-Lee


Reply With Quote
  #5 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011


leescharf View Post
Hi,

I have been looking for the same thing for Tradestation... plotting of the support/resistance on the bars/chart.

Anyone have intel?

TIA!

-Lee

Compile the indicator and the two functions below in TradeStation.

Chaos Fractals:

 
Code
[LegacyColorValue = true]; 

Inputs:		Strength(2);

value1=swinghigh(1,h,Strength,80);
value2=swinglow(1,l,Strength,80);

if value1>-1 then plot1(value1,"BuyFractal");
if value2>-1 then plot2(value2,"SellFractal");

SwingHigh:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, 1, var0, 
 var1 ) ;

SwingHigh = var0 ;

SwingLow:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, -1, var0, 
 var1 ) ;

SwingLow = var0 ;


Reply With Quote
  #6 (permalink)
 leescharf 
New York, NY
 
Experience: Beginner
Platform: TradeStation
Trading: Futures
Posts: 17 since Aug 2020
Thanks Given: 4
Thanks Received: 8


olobay View Post
Compile the indicator and the two functions below in TradeStation.

Chaos Fractals:

 
Code
[LegacyColorValue = true]; 

Inputs:		Strength(2);

value1=swinghigh(1,h,Strength,80);
value2=swinglow(1,l,Strength,80);

if value1>-1 then plot1(value1,"BuyFractal");
if value2>-1 then plot2(value2,"SellFractal");

SwingHigh:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, 1, var0, 
 var1 ) ;

SwingHigh = var0 ;

SwingLow:

 
Code
inputs: 
	Instance( numericsimple ), 
	PriceValue( numericseries ), 
	Strength( numericsimple ), 
	Len( numericsimple ) ;

variables: 
	var0( 0 ), 
	var1( 0 ) ;

Value1 = Pivot( PriceValue, Len, Strength, Strength, Instance, -1, var0, 
 var1 ) ;

SwingLow = var0 ;

Hi @olobay!

Thanks so much for this... unfortunately, TS gives me a lot of errors on this code. I'm not super proficient, so possible I'm missing something obvious... do I need to adjust this for EL formatting-wise? Also "numericsimple" is not recognized.

Thanks for any additional insight.

Cheers,
Lee


Reply With Quote
  #7 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011


leescharf View Post
Hi @olobay!

Thanks so much for this... unfortunately, TS gives me a lot of errors on this code. I'm not super proficient, so possible I'm missing something obvious... do I need to adjust this for EL formatting-wise? Also "numericsimple" is not recognized.

Thanks for any additional insight.

Cheers,
Lee

I don't have TS so I don't know. You try Google and check this too:


Reply With Quote
  #8 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,448 since Apr 2013
Thanks Given: 494
Thanks Received: 1,643

Lee,

it sounds like you might be putting all three codes in indicators. The latter two are functions and already exist within Tradestation. So would only need the first code.

Apart from that you can take a look at the built-in ShowMe Fractals that might do what you have in mind, too.

Regards,

ABCTG



leescharf View Post
Hi @olobay!

Thanks so much for this... unfortunately, TS gives me a lot of errors on this code. I'm not super proficient, so possible I'm missing something obvious... do I need to adjust this for EL formatting-wise? Also "numericsimple" is not recognized.

Thanks for any additional insight.

Cheers,
Lee


Follow me on X Reply With Quote
  #9 (permalink)
thoughtful
Klamath Falls OR
 
Posts: 60 since Apr 2020
Thanks Given: 21
Thanks Received: 80


caballer View Post
Hello,

I'm looking for an EasyLanguage Support Resistance Fractal Levels Indicator like this one:

wwwDOTtradingviewDOTcom/script/RQnLfaNE-Swing-high-low-support-resistance-by-Patternsmart-com/

It is based on the Fractals indicator, but it draws lines instead of one dot for each fractal.

There is an old metatrader indicator that does the same thing, called Kay Support Resistance, or Barry Support Resistance.

Can anyone help?

Thanks


I looked at the link, aha, that's basically just automatic levels. At that link it's not really using fractals though, just swings of a large strength. I actually coded my own fractal swings, so they're real/actual fractal swings, and then for levels you'd use the 1st fractal swings. I coded the automatic levels too (in MC easylanguage) -- it draws a horizontal trendline. BTW, by "1st fractal" I don't mean the minimum swings, but the larger swings based on those minimum swings.

I was actually thinking of packaging up my code one of these days, when I find time, and maybe even selling it for cheap. Since it's in MC easylanguage, I won't be able to sell to the huge NinjaTrader market though. IDK if anyone would even be interested. You know how things are -- even if you think something is awesome and you use it alot, others may not.


Reply With Quote




Last Updated on October 30, 2020


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts