TradingView
CryptoRox
23 de Oct. de 2015 17:06

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

Euro Fx/U.S. DollarFXCM

Descripción

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

Comentarios

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.
tradingview.com/script/qkgnuqIE-4All-Alerts-Script-for-an-easier-setup/

Comentarios

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

Notas de prensa

Updated to Pinexcript Version 3 and added all the new standard components.
Comentarios
davexs28
Am I missing something? This strategy immediately closes any position it opens. I am using your code.
e0615
hi, I just got autoview and want to use it with oanda. Ill be using a strategy from the public indicators in tradingview. is oanda supported? how do i set it up? Thanks
surfr10132
Is there a binance installation guide?
brunocapelao
Hello Fellow,

I'm creating a robot to automate my trades on 1Broker.

With this automation I can operate in several markets, different strategies and optimize my profits.
Are you also interested in using it?

If yes, let me know: goo.gl/forms/KdLav3UtDTlr3bww1
DayTradingOil
I really need this for Oanda. The way my strategy is coded only works through tradingview due to its ability to call plots from different time frames and plot them on the current time frame. No other program(especially for automating) met these requirements, which is the fundamental of my code and strategy. Any help at all in finding resources to bridge my own API between oanda and tradingview to automate strategy orders would greatly help. Mahalo
dcrain328
@oahutradingprofit, any luck on setting this up on Oanda, I see it supports it now but i keep getting errors when an alert fires. Let me know..thanks, Dan
P3RCY
if i want to activate it on poloniex I must pay 4,99$ per month. It is not free.
CryptoRox
Autoview has come a long way since this strategy and tutorial was created.
To find out more you can visit the new website htpp://autoview.with.pink/

bpriolio
Hi where can I get more info on the strategy and alerts? Also does the system have the ability to auto enter a trade? Does this system also work with forex? Cheers
@CryptoRox,
kraven1411
Hi, it's possibile work with this extension with Plus500?
Thanks
Más