这两个函数都差不多,都是写在指标的第二行,配置和设置你的指标。
study(研究)
下面是函数参数:
study(title, shorttitle, overlay, format, precision, scale, max_bars_back, max_lines_count, max_labels_count, resolution, resolution_gaps, max_boxes_count) → void
例子:
study(title=‘MyScriptStudy‘)
study(title="MyScriptStudy", shorttitle="MSS", precision=6, overlay=true)
下面是参数详细介绍,当然前两个不用说了:
- overlay(const bool):是否将当前指标叠加到主图。true:叠加到主图;默认为 false。
- format(const string):可能的值为:format.inherit、format.price、format.volume。默认为 format.inherit。
- precision(const integer):价格轴上 study 的小数位。必须是正整数且不大于 16。如果省略,则使用父系列的格式。如果 format 为 format.inherit 并且设置了此参数,则 format 变为 format.price。
- scale(const integer):指标应附加到的价格标度。值可以是:scale.right、scale.left、scale.none。 值 scale.none 只能与 ‘overlay=true‘ 设置结合使用。如果省略,则使用主系列的比例。
- max_bars_back(const integer):这个一般不会使用,而是使用 max_bars_back 函数。
- linktoseries(const bool):如果为 true,那么 study 位于主图相同的价格和位置。 应仅与 ‘overlay=true‘ 结合使用。 默认为假。
从第九个开始一直到最后,不需要去了解。
strategy
等用到了再写。