OPEN-SOURCE SCRIPT

How to automate this strategy for free using a chrome extension.

업데이트됨
Hey everyone,

Recently we developed a chrome extension for automating TradingView strategies using the alerts they provide. Initially we were charging a monthly fee for the extension, but we have now decided to make it FREE for everyone. So to display the power of automating strategies via TradingView, we figured we would also provide a profitable strategy along with the custom alert script and commands for the alerts so you can easily cut and paste to begin trading for profit while you sleep.

Step 1:
You are going to need to download the Chrome Extension called AutoView. You can get the extension for free by following this link: bit.ly/1NY9Rl0 ( I had to shorten the link as it contains Google and TV automatically converts it to a symbol)

Step 2: Go to your chrome extension page, and under the new extension you'll see a "settings" button. In the setting you will have to connect and give permission to the exchange 1broker allowing the extension to place your orders automatically when triggered by an alert.

Step 3: Setup the strategy and custom script for the alerts in TradingView. The attached script is the strategy, you can play with the settings yourself to try and get better numbers/performance if you please.

This following script is for the custom alerts:
//version=2
study("4All-Alert", shorttitle="Alerts")

src = close
len = input(4, minval=1, title="Length")

up = rma(max(change(src), 0), len)
down = rma(-min(change(src), 0), len)
rsi = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))

rsin = input(5)
sn = 100 - rsin
ln = 0 + rsin

short = crossover(rsi, sn) ? 1 : 0
long = crossunder(rsi, ln) ? 1 : 0

plot(long, "Long", color=green)
plot(short, "Short", color=red)

Now that you have the extension installed, the custom strategy and alert scripts in place, you simply need to create the alerts.

To get the alerts to communicate with the extension properly, there is a specific syntax that you will need to put in the message of the alert. You can find more details about the syntax here : gist.github.com/tranzium/34727307c823dfa75e49

For this specific strategy, I use the Alerts script, long/short greater than 0.9 on close.
In the message for a long place this as your message:
Long
c=order b=short
c=position b=short l=200 t=market
b=long q=0.01 l=200 t=market tp=13 sl=25

and for the short...

Short
c=order b=long
c=position b=long l=200 t=market
b=short q=0.01 l=200 t=market tp=13 sl=25

If you'll notice in my above messages, compared to the strategy my tp and sl (take profit and stop loss) vary by a few pips. This is to cover the market opens and spread on 1broker. You can change the tp and sl in the strategy to the above and see that the overall profit will not vary much at all.

I hope this all makes sense and it is enough to not only make some people money, but to show the power of coming up with your own strategy and automating it using TradingView alerts and the free Chrome Extension AutoView.

ps. I highly recommend upgrading your TradingView account so you have access to back testing and multiple alerts.

There is really no reason you won't cover the cost and then some on a monthly basis using the tools provided.

Best of luck and happy trading.

Note: The extension currently allows for automation on 2 exchanges; 1broker and Okcoin. If you do not have accounts there, we'd appreciate you signing up using our referral links.
okcoin.com/?invid=2016110
1broker.com/m/r.php?i=3228
노트
A section of the alert script in the description has been converted to ticker data. So I published the script here to make things a little easier.
4All-Alerts Script for an easier setup
노트
All orders are now being tracked in a Google Sheet for public viewing.

Since: 03/01/2016 18:01:00
Net Profit = 161 pips

Link for tracked statistics here:
bit.ly/1ZYDQMt
릴리즈 노트
Updated to Pinexcript Version 3 and added all the new standard components.
automationcustomextensionFREEOscillatorsprofitRelative Strength Index (RSI)strategy

오픈 소스 스크립트

진정한 TradingView 정신에 따라, 이 스크립트의 저자는 트레이더들이 이해하고 검증할 수 있도록 오픈 소스로 공개했습니다. 저자에게 박수를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 출판물에서 이 코드를 재사용하는 것은 하우스 룰에 의해 관리됩니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

차트에 이 스크립트를 사용하시겠습니까?


또한 다음에서도:

면책사항