搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
BTCUSD бесплатный индикатор уровней
Bitcoin / TetherUS
教育
BTCUSD бесплатный индикатор уровней
由ErjanHayek提供
關注
關注
已更新
2020年2月17日
1
5
8
8
2020年2月15日
Написал скрипт индикатора на основе идеи вычисления средних значений цены.
Копируйте и вставляйте в свой скрипт индикатора:
//
version
=4
study("MIN MAX and Average", overlay=true)
biggest(series) =>
max = 0.0
max := nz(max[1], series)
if series > max
max := series
max
max
smallest(series) =>
min = 0.0
min := nz(min[1], series)
if series < min
min := series
min
min
//Average sell prices
averageAT = (biggest(close)+smallest(close))/2
average_sell_1 = (averageAT+biggest(close))/2
average_sell_2_1 = (average_sell_1+biggest(close))/2
average_sell_2_2 = (average_sell_1+averageAT)/2
//Average buy prices
average_buy_1 = (averageAT+smallest(close))/2
average_buy_2_1 = (averageAT+average_buy_1)/2
average_buy_2_2 = (average_buy_1+smallest(close))/2
plot(biggest(close), color=color.red, title="All time max", transp=0, linewidth=2, trackprice=true)
plot(smallest(close), color=color.green, title="All time low", transp=0, linewidth=2, trackprice=true)
plot(averageAT, color=color.orange, title="All time average", transp=0, linewidth=2, trackprice=true)
plot(average_sell_1, color=color.purple, title="avg sell 1", transp=0, linewidth=2, trackprice=true)
plot(average_sell_2_1, color=color.fuchsia, title="avg sell 2_1", transp=0, linewidth=2, trackprice=true)
plot(average_sell_2_2, color=color.fuchsia, title="avg sell 2_2", transp=0, linewidth=2, trackprice=true)
plot(average_buy_1, color=color.lime, title="avg buy 1", transp=0, linewidth=2, trackprice=true)
plot(average_buy_2_1, color=color.lime, title="avg buy 2_1", transp=0, linewidth=2, trackprice=true)
plot(average_buy_2_2, color=color.lime, title="avg buy 2_2", transp=0, linewidth=2, trackprice=true)
2020年2月17日
註釋
Шкалу индикатора что слева необходимо объединить с той что справа
2020年2月17日
註釋
//
version
=4
//Author ErjanHayek
study("MIN MAX and Average", overlay=true)
biggest(series) =>
max = 0.0
max := nz(max[1], series)
if series > max
max := series
max
max
smallest(series) =>
min = 0.0
min := nz(min[1], series)
if series < min
min := series
min
min
//Average sell prices
averageAT = (biggest(close)+smallest(close))/2
average_sell_1 = (averageAT+biggest(close))/2
average_sell_2_1 = (average_sell_1+biggest(close))/2
average_sell_2_2 = (average_sell_1+averageAT)/2
//Average buy prices
average_buy_1 = (averageAT+smallest(close))/2
average_buy_2_1 = (averageAT+average_buy_1)/2
average_buy_2_2 = (average_buy_1+smallest(close))/2
plot(biggest(close), color=color.red, title="All time max", transp=0, linewidth=2, trackprice=true)
plot(smallest(close), color=color.green, title="All time low", transp=0, linewidth=2, trackprice=true)
plot(averageAT, color=color.orange, title="All time average", transp=0, linewidth=2, trackprice=true)
plot(average_sell_1, color=color.purple, title="avg sell 1", transp=0, linewidth=2, trackprice=true)
plot(average_sell_2_1, color=color.fuchsia, title="avg sell 2_1", transp=0, linewidth=2, trackprice=true)
plot(average_sell_2_2, color=color.fuchsia, title="avg sell 2_2", transp=0, linewidth=2, trackprice=true)
plot(average_buy_1, color=color.lime, title="avg buy 1", transp=0, linewidth=2, trackprice=true)
plot(average_buy_2_1, color=color.lime, title="avg buy 2_1", transp=0, linewidth=2, trackprice=true)
plot(average_buy_2_2, color=color.lime, title="avg buy 2_2", transp=0, linewidth=2, trackprice=true)
averageprice
Technical Indicators
ranges
уровни
ErjanHayek
關注
相關出版品
Simple strategy BTC/USD
由ErjanHayek提供
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。