如果你喜欢请关注我的推特:https://twitter.com/DSL2140

好多朋友不知道老猫的趋势通道怎么设置,这个指标需要用代码写出来然后再调用,在币圈看盘的主要有tradingview(简称TV)和aicoin,下面演示如何在这两个看盘中制作老猫的趋势通道:

1、tradingview

首先你打开https://cn.tradingview.com/chart/X3NKijFm/来看盘(看盘分析都是以币安交易所数据为主),然后在K线界面最下面有个pine编辑器,把下面代码粘贴进去**(注意每一行跟截图上一致,不要错乱)**,指标就编辑好了,然后点击添加到图表即可!

//@version=3

study("ls trend channel", overlay=true)

//短线多空

stLong=ema(high,33)

stShort=ema(low,33)

stLongPlot=plot(stLong,"短线多",green,transp=0)

stShortPlot=plot(stShort,"短线空",red,transp=0)

clr=close>stLong?green:red

fill(stLongPlot,stShortPlot,color=clr)

https://substackcdn.com/image/fetch/w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2846a4b-64b7-476e-a852-9735079c1ea4_5120x2550.png

2、aicoin