Skip to content

RajdeepBorgohain/TradingViewScrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

TradingView Data Scrapper

Scrap the timeframe you want!


Step 1: Go to your tradingview account and copy paste the below code on your pine script. ![image](https://user-images.githubusercontent.com/20045975/153050751-5d8c77ab-7fb9-446c-b13b-f3e70a690f1b.png)

indicator(title="Time Show", shorttitle="TimeOnly", overlay=true, timeframe="", timeframe_gaps=true)
len = input.int(9, minval=1, title="Length")
src = input(close, title="Source")
offset = input.int(title="Offset", defval=0, minval=-500, maxval=500)
out = ta.ema(src, len)
plot(out, title="EMA", color=color.blue, offset=offset)
plot(series=time, color=color.blue,title="Bar close time")

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published