当前位置:网站首页>Pine脚本 | 如何显示和排版绘图开关?
Pine脚本 | 如何显示和排版绘图开关?
2022-08-04 02:20:00 【奇迹虎虎】
想必白嫖党们和我一样喜欢把一堆代码塞进一个脚本里,但却出现一个痛点,你的绘图开关一大堆,你得在窗口滑来滑去点击。嘿嘿,小虎教你怎么解决“开关的排版问题” ~
先上图,这是最终效果:

代码案例:
- 上图的绘图开关源代码:
//@version=5 indicator(title='top', overlay=true, explicit_plot_zorder=true) //explicit_plot_zorder开启绘制顺序为越靠尾的代码绘图越靠顶 //---------------------------------------------------------------------all_signals--------------------------------------------------------------------- //信号显示模块 head_sma_envelopes_0_signal = input.bool(defval=true, title='HS', inline='head_sma_envelopes_signals_1', group='all_signals') head_sma_timeframe = input.timeframe(defval='W', title='', options=['','D','W','M'], inline='head_sma_envelopes_signals_1', group='all_signals') head_sma_atr_signal = input.bool(defval=true, title='atr', inline='head_sma_envelopes_signals_1', group='all_signals') head_sma_table_signal = input.bool(defval=true, title='table', inline='head_sma_envelopes_signals_1', group='all_signals') head_sma_envelopes_1_signal = input.bool(defval=true, title='HS1', inline='head_sma_envelopes_signals_2', group='all_signals') head_sma_upper_mult = input.float(defval=1.62, title='', step=0.01, inline='head_sma_envelopes_signals_2', group='all_signals') head_sma_envelopes_2_signal = input.bool(defval=true, title='HS2', inline='head_sma_envelopes_signals_2', group='all_signals') head_sma_lower_mult = input.float(defval=0.62, title='', step=0.01, inline='head_sma_envelopes_signals_2', group='all_signals') envelope_signal = input.bool(defval=true, title='envelopes', inline='envelope_signal', group='all_signals') envelope_fill_signal = input.bool(defval=true, title='fill', inline='envelope_signal', group='all_signals') middle_signal = input.bool(defval=true, title='middle', inline='envelope_signal', group='all_signals') SuperTrend_signal = input.bool(defval=true, title='atr1', inline='SuperTrend_signal', group='all_signals') SuperTrend_timeframe = input.timeframe(defval='', title='', options=['','180','D','8D','64D'], inline='SuperTrend_signal', group='all_signals') SuperTrend_signal_2 = input.bool(defval=true, title='atr2', inline='SuperTrend_signal', group='all_signals') SuperTrend_timeframe_2 = input.timeframe(defval='', title='', options=['','180','D','8D','64D'], inline='SuperTrend_signal', group='all_signals') SuperTrend_resistance_signal = input.bool(defval=true, title='SuperTrend Resistance', inline='SuperTrend Resistance', group='all_signals') resistance_signal = input.bool(defval=true, title='resistance', inline='resistance_signal', group='all_signals') td_signal = input.bool(defval=true, title='td', inline='td_signal', group='all_signals') - explicit_plot_zorder=true,这个设置能让你代码中的 plot 输出的绘图按代码顺序倒序绘制,建议开启。当然不开也可以,但在绘图过多的情况下,你的绘图顺序可能会一团糟。
- inline='head_sma_envelopes_signals_1' ,inline 的功能使 input 放在同一行显示并按代码顺序中从左到右排列。
- group='all_signals',group 的功能是使 input 分组显示,相当于word文档的段落间距。
排版技巧:
- 先确定相关性,把相关的开关划分为一组
- 再确定重要性,从上到下排序
- 开关名称尽量简写
- 适当使用option下拉列表替代bool勾选开关,有助于节省弹窗空间
边栏推荐
- 企业虚拟偶像产生了实质性的价值效益
- Variable string
- 出海季,互联网出海锦囊之本地化
- 实例037:排序
- Continuing to invest in product research and development, Dingdong Maicai wins in supply chain investment
- 大佬们,读取mysql300万单表要很长时间,有什么参数可以优惠,或者有什么办法可以快点
- MallBook 助力SKT思珂特教育集团,立足变化,拥抱敏捷交易
- SAP SD module foreground operation
- Promise solves blocking synchronization and turns asynchronous into synchronous
- C# 构造函数业务场景测试项目
猜你喜欢
随机推荐
可变字符串
什么是SVN(Subversion)?
5. Scrapy middleware & distributed crawler
企业虚拟偶像产生了实质性的价值效益
Flutter3.0线程——四步教你如何全方位了解(事件队列)
APP电商如何快速分润分账?
Flask Framework Beginner-06-Add, Delete, Modify and Check the Database
Example 041: Methods and variables of a class
2022年茶艺师(中级)考试试题模拟考试平台操作
DDTL: Domain Transfer Learning at a Distance
JS 保姆级贴心,从零教你手写实现一个防抖debounce方法
Download install and create/run project for HBuilderX
香港服务器有哪些常用的型号
简单的线性表的顺序表示实现,以及线性表的链式表示和实现、带头节点的单向链表,C语言简单实现一些基本功能
2022年T电梯修理考题及答案
There are n steps in total, and you can go up to 1 or 2 steps each time. How many ways are there?
What is SVN (Subversion)?
Example 035: Setting the output color
Presto中broadcast join和partition join执行计划的处理过程
Web APIs BOM- 操作浏览器:swiper 插件









