当前位置:网站首页>TradingView_学习笔记
TradingView_学习笔记
2022-08-10 16:34:00 【4change】
TradingView_学习笔记
TradingView教学系统班,了解TradingView,熟悉PINE编程
Pine 脚本语言
实例1:收盘价绘制成线
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// gm4gxf
//@version=5
indicator("我的脚本", overlay=true)
plot(close)
实例2:变色均线
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// gm4gxf
//@version=5
indicator("我的脚本", overlay=true)
// technical analysis 技术分析
ma7 = ta.sma(close, 7) // Simple Moving Average
_color = if ma7 > ma7[1]
color.green
else
color.red
plot(ma7, color=_color, linewidth=2)
边栏推荐
猜你喜欢
随机推荐
Annual salary of 600,000+?This 100,000-word interview assault book covers all technology stacks from Ali P5 engineers to P7
v-show指令:切换元素的显示与隐藏
How to realize full backup and incremental backup of MySQL database
一文带你彻底拿下a,b两点间等效电阻
基础填空以及编程题
第叁章模块大全之《 os模块》
app自动化测试webview怎么操作
积分可以当钱用,阿里推出个人「碳账户」
Basic knowledge of software engineering--requirements analysis
李斌带不动的长安新能源高端梦,华为和“宁王”能救吗?
雷达存在感应器技术,实时感知控制应用,雷达人体探测方案
电力系统潮流计算(牛顿-拉夫逊法、高斯-赛德尔法、快速解耦法)【6节点 9节点 14节点 26节点 30节点 57节点】(Matlab代码实现)
困扰已久的一个微信bug
Kubernetes kube-proxy工作原理
玩转Redis|学会这10点让你分分钟拿下Redis,满足你的一切疑问
promise笔记(二)
异常处理的超详细讲解
LeetCode-1. Two Sum
家电巨头,不碰儿童生意
LeetCode-101. Symmetric Tree









