NexusFi: Find Your Edge


Home Menu

 





tradingview indicator to work in Sierra Chart


Discussion in Sierra Chart

Updated
      Top Posters
    1. looks_one yamin2000 with 3 posts (0 thanks)
    2. looks_two cory with 2 posts (2 thanks)
    3. looks_3 Rrrracer with 1 posts (0 thanks)
    4. looks_4 AnvilRob with 1 posts (1 thanks)
    1. trending_up 4,469 views
    2. thumb_up 3 thanks given
    3. group 3 followers
    1. forum 6 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
yamin2000
Saudi Arabia
 
Posts: 58 since Apr 2014
Thanks Given: 26
Thanks Received: 4

hi
is it easy to change tradingview indicator to work in Sierra Chart?
TY


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Strike Pause Holds, Oil Erases Monday Spike -- May CPI W …
Traders Hideout
Kalshi Sets $4.13B All-Time Weekly Record as Polymarket …
Prediction Markets & Event Contracts
Roland Garros Final Day: $3M on Zverev at 80.5% -- Leban …
Prediction Markets & Event Contracts
CME Launches Bitcoin Volatility Futures June 1 -- First …
Cryptocurrency
Hormuz Completely Closed: US Strikes Day 2, Iran Shoots …
Traders Hideout
 
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
  #2 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,099 since Jun 2009
Thanks Given: 877
Thanks Received: 8,098


yamin2000 View Post
hi
is it easy to change tradingview indicator to work in Sierra Chart?
TY

I don't use their software but their code look similar enough, so the answer is yes.


Reply With Quote
Thanked by:
  #3 (permalink)
 
AnvilRob's Avatar
 AnvilRob 
Smithfield, VA
 
Experience: Advanced
Platform: Tasty Trade, TradingView
Broker: Tasty Trade
Trading: SPX Options
Frequency: Daily
Duration: Weeks
Posts: 674 since May 2017
Thanks Given: 359
Thanks Received: 1,043


I think pinescript does some of the heavy lifting in tradingview code. A coder may have to add some of the missing code to get it to work.

For example I've seen average true range in part of a code. The atr code is not there but only asks for the atr. And pinescript automatically adds the numbers through it's back end.

Sent using the NexusFi mobile app


Follow me on X Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #4 (permalink)
yamin2000
Saudi Arabia
 
Posts: 58 since Apr 2014
Thanks Given: 26
Thanks Received: 4

thanks guys
Can you recommend someone do it for me ?


Reply With Quote
  #5 (permalink)
 
Rrrracer's Avatar
 Rrrracer 
On the road
Trading Nomad
 
Experience: Intermediate
Platform: TradingView
Broker: Oanda
Trading: FX
Posts: 2,512 since Feb 2017
Thanks Given: 17,587
Thanks Received: 9,758

What indicator are you looking to have converted? I've used both platforms and am having a hard time imagining an indicator Tradingview has that Sierra doesn't.


Follow me on X Visit my NexusFi Trade Journal Reply With Quote
  #6 (permalink)
 
cory's Avatar
 cory 
virginia
 
Experience: Intermediate
Platform: ninja
Trading: NQ
Posts: 6,099 since Jun 2009
Thanks Given: 877
Thanks Received: 8,098

I skimmed thru 370 pages of their indicators under scripts tab most with the lock on even with a simple SMA code. But as the post above said SC should have most of them done already.


Reply With Quote
Thanked by:
  #7 (permalink)
yamin2000
Saudi Arabia
 
Posts: 58 since Apr 2014
Thanks Given: 26
Thanks Received: 4


Rrrracer View Post
What indicator are you looking to have converted? I've used both platforms and am having a hard time imagining an indicator Tradingview has that Sierra doesn't.

This one
https://www.tradingview.com/script/JJp5Eg3d-RS-Renko-Auto-Cloner-V0/
it helped me alot with my strategy it might not work with other strategy but for me its working


//@version=2
study(title='[RS]Renko Auto Cloner V0', shorttitle='lv', overlay=true)
use_current_timeframe = input(true)
alternative_timeframe = input('5')
renko_data_source = input('close')
renko_mode = input('ATR')
renko_mode_value = input(defval=100, type=float)
t = renko(tickerid, renko_data_source, renko_mode, renko_mode_value)

ro = security(t, use_current_timeframe ? period : alternative_timeframe, open)
rc = security(t, use_current_timeframe ? period : alternative_timeframe, close)

is_new_direction = change(rc-ro) != 0
sr = is_new_direction ? ro : sr[1]

n01 = plot(series=is_new_direction ? na : sr-(rc-ro), title='-1', color=red, style=linebr, transp=0)
p00 = plot(series=is_new_direction ? na : sr, title='0', color=black, style=linebr, transp=0)
p01 = plot(series=is_new_direction ? na : sr+(rc-ro) * 1, title='1', color=blue, style=linebr, transp=0)
p02 = plot(series=is_new_direction ? na : sr+(rc-ro) * 2, title='2', color=black, style=linebr, transp=0)
p03 = plot(series=is_new_direction ? na : sr+(rc-ro) * 3, title='3', color=black, style=linebr, transp=0)
p04 = plot(series=is_new_direction ? na : sr+(rc-ro) * 4, title='4', color=black, style=linebr, transp=0)
p05 = plot(series=is_new_direction ? na : sr+(rc-ro) * 5, title='5', color=black, style=linebr, transp=0)
p06 = plot(series=is_new_direction ? na : sr+(rc-ro) * 6, title='6', color=black, style=linebr, transp=0)
p07 = plot(series=is_new_direction ? na : sr+(rc-ro) * 7, title='7', color=black, style=linebr, transp=0)
p08 = plot(series=is_new_direction ? na : sr+(rc-ro) * 8, title='8', color=black, style=linebr, transp=0)
p09 = plot(series=is_new_direction ? na : sr+(rc-ro) * 9, title='9', color=black, style=linebr, transp=0)
p10 = plot(series=is_new_direction ? na : sr+(rc-ro) * 10, title='10', color=black, style=linebr, transp=0)

fill(plot1=p00, plot2=p01, color=blue, transp=90, title='BG01')


Reply With Quote




Last Updated on December 13, 2017


© 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