opencode-pyneruntime 6.6.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (261) hide show
  1. opencode_pyneruntime-6.6.4.dist-info/METADATA +281 -0
  2. opencode_pyneruntime-6.6.4.dist-info/RECORD +261 -0
  3. opencode_pyneruntime-6.6.4.dist-info/WHEEL +5 -0
  4. opencode_pyneruntime-6.6.4.dist-info/entry_points.txt +6 -0
  5. opencode_pyneruntime-6.6.4.dist-info/licenses/LICENSE +201 -0
  6. opencode_pyneruntime-6.6.4.dist-info/licenses/NOTICE +21 -0
  7. opencode_pyneruntime-6.6.4.dist-info/top_level.txt +1 -0
  8. pynecore/__init__.py +6 -0
  9. pynecore/cli/__init__.py +2 -0
  10. pynecore/cli/app.py +238 -0
  11. pynecore/cli/commands/__init__.py +343 -0
  12. pynecore/cli/commands/benchmark.py +186 -0
  13. pynecore/cli/commands/compile.py +198 -0
  14. pynecore/cli/commands/data.py +857 -0
  15. pynecore/cli/commands/debug.py +63 -0
  16. pynecore/cli/commands/optimize.py +956 -0
  17. pynecore/cli/commands/plugin.py +242 -0
  18. pynecore/cli/commands/run.py +2006 -0
  19. pynecore/cli/pluggable.py +132 -0
  20. pynecore/cli/utils/__init__.py +0 -0
  21. pynecore/cli/utils/api_error_handler.py +168 -0
  22. pynecore/cli/utils/broker_picker.py +330 -0
  23. pynecore/cli/utils/error_hook.py +28 -0
  24. pynecore/cli/utils/keyreader.py +178 -0
  25. pynecore/cli/utils/provider_picker.py +19 -0
  26. pynecore/cli/utils/symbol_browser.py +1149 -0
  27. pynecore/core/__init__.py +0 -0
  28. pynecore/core/aggregator.py +257 -0
  29. pynecore/core/bar_magnifier.py +168 -0
  30. pynecore/core/broker/__init__.py +64 -0
  31. pynecore/core/broker/defaults.py +113 -0
  32. pynecore/core/broker/disappearance.py +927 -0
  33. pynecore/core/broker/emulator.py +345 -0
  34. pynecore/core/broker/exceptions.py +346 -0
  35. pynecore/core/broker/idempotency.py +401 -0
  36. pynecore/core/broker/intent_builder.py +334 -0
  37. pynecore/core/broker/journal.py +1785 -0
  38. pynecore/core/broker/models.py +1600 -0
  39. pynecore/core/broker/native_failsafe_manager.py +1436 -0
  40. pynecore/core/broker/one_way_emulator.py +1128 -0
  41. pynecore/core/broker/position.py +787 -0
  42. pynecore/core/broker/run_identity.py +126 -0
  43. pynecore/core/broker/software_entry_stop_engine.py +351 -0
  44. pynecore/core/broker/software_partial_bracket_engine.py +1379 -0
  45. pynecore/core/broker/spot_inventory.py +1327 -0
  46. pynecore/core/broker/storage.py +2655 -0
  47. pynecore/core/broker/store_helpers.py +2161 -0
  48. pynecore/core/broker/sync_engine.py +16070 -0
  49. pynecore/core/broker/validation.py +382 -0
  50. pynecore/core/class_property.py +7 -0
  51. pynecore/core/config.py +392 -0
  52. pynecore/core/csv_file.py +547 -0
  53. pynecore/core/currency.py +262 -0
  54. pynecore/core/data_converter.py +1002 -0
  55. pynecore/core/datetime.py +296 -0
  56. pynecore/core/download_info.py +71 -0
  57. pynecore/core/download_runner.py +274 -0
  58. pynecore/core/htf_aggregator.py +181 -0
  59. pynecore/core/import_hook.py +358 -0
  60. pynecore/core/instance_state.py +494 -0
  61. pynecore/core/live_ltf_collector.py +442 -0
  62. pynecore/core/live_ltf_window.py +189 -0
  63. pynecore/core/live_runner.py +1347 -0
  64. pynecore/core/module_property.py +26 -0
  65. pynecore/core/ohlcv_file.py +1888 -0
  66. pynecore/core/overload.py +371 -0
  67. pynecore/core/pine_cast.py +113 -0
  68. pynecore/core/pine_export.py +95 -0
  69. pynecore/core/pine_method.py +244 -0
  70. pynecore/core/pine_range.py +86 -0
  71. pynecore/core/pine_udt.py +69 -0
  72. pynecore/core/plugin/__init__.py +394 -0
  73. pynecore/core/plugin/broker.py +781 -0
  74. pynecore/core/plugin/cli.py +96 -0
  75. pynecore/core/plugin/live_provider.py +208 -0
  76. pynecore/core/plugin/provider.py +331 -0
  77. pynecore/core/provider_string.py +148 -0
  78. pynecore/core/random.py +40 -0
  79. pynecore/core/resampler.py +686 -0
  80. pynecore/core/safe_convert.py +64 -0
  81. pynecore/core/script.py +1011 -0
  82. pynecore/core/script_runner.py +3202 -0
  83. pynecore/core/security.py +1749 -0
  84. pynecore/core/security_process.py +1253 -0
  85. pynecore/core/security_shm.py +456 -0
  86. pynecore/core/series.py +417 -0
  87. pynecore/core/strategy_stats.py +669 -0
  88. pynecore/core/symbol_map.py +134 -0
  89. pynecore/core/syminfo.py +505 -0
  90. pynecore/core/viz.py +591 -0
  91. pynecore/lib/__init__.py +1771 -0
  92. pynecore/lib/_fixnan.py +32 -0
  93. pynecore/lib/_math_stateful.py +202 -0
  94. pynecore/lib/_timeframe_change.py +101 -0
  95. pynecore/lib/adjustment.py +6 -0
  96. pynecore/lib/alert.py +39 -0
  97. pynecore/lib/alert.pyi +14 -0
  98. pynecore/lib/array.py +1051 -0
  99. pynecore/lib/barmerge.py +60 -0
  100. pynecore/lib/barstate.py +30 -0
  101. pynecore/lib/box.py +415 -0
  102. pynecore/lib/chart.py +128 -0
  103. pynecore/lib/color.py +152 -0
  104. pynecore/lib/color.pyi +50 -0
  105. pynecore/lib/currency.py +62 -0
  106. pynecore/lib/dayofweek.py +36 -0
  107. pynecore/lib/dayofweek.pyi +18 -0
  108. pynecore/lib/display.py +8 -0
  109. pynecore/lib/dividends.py +9 -0
  110. pynecore/lib/earnings.py +11 -0
  111. pynecore/lib/extend.py +6 -0
  112. pynecore/lib/font.py +5 -0
  113. pynecore/lib/footprint.py +79 -0
  114. pynecore/lib/format.py +11 -0
  115. pynecore/lib/hline.py +67 -0
  116. pynecore/lib/hline.pyi +24 -0
  117. pynecore/lib/label.py +409 -0
  118. pynecore/lib/line.py +433 -0
  119. pynecore/lib/linefill.py +93 -0
  120. pynecore/lib/location.py +11 -0
  121. pynecore/lib/log.py +362 -0
  122. pynecore/lib/map.py +150 -0
  123. pynecore/lib/math.py +385 -0
  124. pynecore/lib/matrix.py +708 -0
  125. pynecore/lib/order.py +8 -0
  126. pynecore/lib/pivotpointtype.py +8 -0
  127. pynecore/lib/plot.py +95 -0
  128. pynecore/lib/plot.pyi +33 -0
  129. pynecore/lib/polyline.py +91 -0
  130. pynecore/lib/position.py +15 -0
  131. pynecore/lib/request.py +281 -0
  132. pynecore/lib/runtime.py +5 -0
  133. pynecore/lib/scale.py +9 -0
  134. pynecore/lib/session.py +267 -0
  135. pynecore/lib/session.pyi +12 -0
  136. pynecore/lib/shape.py +18 -0
  137. pynecore/lib/size.py +12 -0
  138. pynecore/lib/splits.py +4 -0
  139. pynecore/lib/strategy/__init__.py +4778 -0
  140. pynecore/lib/strategy/closedtrades.py +347 -0
  141. pynecore/lib/strategy/closedtrades.pyi +53 -0
  142. pynecore/lib/strategy/commission.py +9 -0
  143. pynecore/lib/strategy/direction.py +9 -0
  144. pynecore/lib/strategy/oca.py +13 -0
  145. pynecore/lib/strategy/opentrades.py +281 -0
  146. pynecore/lib/strategy/opentrades.pyi +49 -0
  147. pynecore/lib/strategy/risk.py +109 -0
  148. pynecore/lib/string.py +649 -0
  149. pynecore/lib/syminfo.py +84 -0
  150. pynecore/lib/ta.py +2230 -0
  151. pynecore/lib/table.py +290 -0
  152. pynecore/lib/text.py +17 -0
  153. pynecore/lib/ticker.py +207 -0
  154. pynecore/lib/timeframe.py +293 -0
  155. pynecore/lib/volume_row.py +67 -0
  156. pynecore/lib/xloc.py +4 -0
  157. pynecore/lib/yloc.py +5 -0
  158. pynecore/providers/__init__.py +0 -0
  159. pynecore/providers/ccxt.py +664 -0
  160. pynecore/providers/replay.py +187 -0
  161. pynecore/pynesys/__init__.py +0 -0
  162. pynecore/pynesys/api.py +498 -0
  163. pynecore/pynesys/compiler.py +112 -0
  164. pynecore/standalone.py +99 -0
  165. pynecore/testing/__init__.py +1 -0
  166. pynecore/testing/broker_lab/__init__.py +41 -0
  167. pynecore/testing/broker_lab/__main__.py +5 -0
  168. pynecore/testing/broker_lab/cli.py +87 -0
  169. pynecore/testing/broker_lab/generate.py +47 -0
  170. pynecore/testing/broker_lab/model.py +84 -0
  171. pynecore/testing/broker_lab/reference.py +645 -0
  172. pynecore/testing/broker_lab/runner.py +372 -0
  173. pynecore/testing/broker_lab/scheduler.py +50 -0
  174. pynecore/testing/broker_lab/subprocess.py +73 -0
  175. pynecore/transformers/__init__.py +0 -0
  176. pynecore/transformers/builtin_shadow.py +136 -0
  177. pynecore/transformers/closure_arguments_transformer.py +428 -0
  178. pynecore/transformers/display_rewrite.py +140 -0
  179. pynecore/transformers/dynamic_default.py +147 -0
  180. pynecore/transformers/function_isolation.py +757 -0
  181. pynecore/transformers/import_lifter.py +61 -0
  182. pynecore/transformers/import_normalizer.py +328 -0
  183. pynecore/transformers/inline_series_hoist.py +178 -0
  184. pynecore/transformers/input_transformer.py +175 -0
  185. pynecore/transformers/lib_series.py +201 -0
  186. pynecore/transformers/locations.py +70 -0
  187. pynecore/transformers/module_properties.json +3387 -0
  188. pynecore/transformers/module_property.py +221 -0
  189. pynecore/transformers/ne_guard.py +70 -0
  190. pynecore/transformers/persistent.py +320 -0
  191. pynecore/transformers/persistent_series.py +76 -0
  192. pynecore/transformers/safe_convert_transformer.py +97 -0
  193. pynecore/transformers/safe_division_transformer.py +95 -0
  194. pynecore/transformers/script_requirements.py +308 -0
  195. pynecore/transformers/security.py +752 -0
  196. pynecore/transformers/security_instantiation.py +274 -0
  197. pynecore/transformers/series.py +275 -0
  198. pynecore/transformers/slot_layout.py +381 -0
  199. pynecore/transformers/type_checking_stripper.py +25 -0
  200. pynecore/transformers/unused_series_detector.py +267 -0
  201. pynecore/types/__init__.py +21 -0
  202. pynecore/types/alert.py +5 -0
  203. pynecore/types/barmerge.py +5 -0
  204. pynecore/types/base.py +39 -0
  205. pynecore/types/box.py +37 -0
  206. pynecore/types/chart.py +17 -0
  207. pynecore/types/color.py +107 -0
  208. pynecore/types/currency.py +5 -0
  209. pynecore/types/datetime.py +6 -0
  210. pynecore/types/display.py +5 -0
  211. pynecore/types/dividends.py +5 -0
  212. pynecore/types/earnings.py +5 -0
  213. pynecore/types/extend.py +5 -0
  214. pynecore/types/font.py +5 -0
  215. pynecore/types/footprint.py +41 -0
  216. pynecore/types/format.py +5 -0
  217. pynecore/types/hline.py +24 -0
  218. pynecore/types/ib_persistent.py +8 -0
  219. pynecore/types/ib_persistent.pyi +10 -0
  220. pynecore/types/label.py +35 -0
  221. pynecore/types/line.py +32 -0
  222. pynecore/types/linefill.py +13 -0
  223. pynecore/types/location.py +5 -0
  224. pynecore/types/matrix.py +999 -0
  225. pynecore/types/na.py +237 -0
  226. pynecore/types/na.pyi +83 -0
  227. pynecore/types/ohlcv.py +12 -0
  228. pynecore/types/order.py +5 -0
  229. pynecore/types/persistent.py +8 -0
  230. pynecore/types/persistent.pyi +13 -0
  231. pynecore/types/pine_types.py +11 -0
  232. pynecore/types/pine_types.pyi +15 -0
  233. pynecore/types/pivotpointtype.py +5 -0
  234. pynecore/types/plot.py +12 -0
  235. pynecore/types/plot_meta.py +60 -0
  236. pynecore/types/polyline.py +40 -0
  237. pynecore/types/position.py +5 -0
  238. pynecore/types/scale.py +5 -0
  239. pynecore/types/script_type.py +15 -0
  240. pynecore/types/series.py +23 -0
  241. pynecore/types/series.pyi +19 -0
  242. pynecore/types/session.py +35 -0
  243. pynecore/types/shape.py +5 -0
  244. pynecore/types/size.py +5 -0
  245. pynecore/types/source.py +33 -0
  246. pynecore/types/splits.py +5 -0
  247. pynecore/types/strategy.py +45 -0
  248. pynecore/types/table.py +87 -0
  249. pynecore/types/text.py +13 -0
  250. pynecore/types/type_checker.py +7 -0
  251. pynecore/types/type_checker.pyi +48 -0
  252. pynecore/types/volume_row.py +36 -0
  253. pynecore/types/weekdays.py +11 -0
  254. pynecore/types/xloc.py +5 -0
  255. pynecore/types/yloc.py +5 -0
  256. pynecore/utils/__init__.py +0 -0
  257. pynecore/utils/file_utils.py +50 -0
  258. pynecore/utils/rich/__init__.py +0 -0
  259. pynecore/utils/rich/date_column.py +25 -0
  260. pynecore/utils/sequence_view.py +92 -0
  261. pynecore/utils/stdlib_checker.py +17 -0
@@ -0,0 +1,3387 @@
1
+ {
2
+ "lib": {
3
+ "DateStr": {
4
+ "type": "variable"
5
+ },
6
+ "GenericAlias": {
7
+ "type": "variable"
8
+ },
9
+ "HLine": {
10
+ "type": "variable"
11
+ },
12
+ "NA": {
13
+ "type": "variable"
14
+ },
15
+ "PlotMeta": {
16
+ "type": "variable"
17
+ },
18
+ "PyneInt": {
19
+ "type": "variable"
20
+ },
21
+ "Resampler": {
22
+ "type": "variable"
23
+ },
24
+ "Series": {
25
+ "type": "variable"
26
+ },
27
+ "Source": {
28
+ "type": "variable"
29
+ },
30
+ "TimezoneNotFoundError": {
31
+ "type": "variable"
32
+ },
33
+ "TimezoneStr": {
34
+ "type": "variable"
35
+ },
36
+ "UTC": {
37
+ "type": "variable"
38
+ },
39
+ "alertcondition": {
40
+ "type": "variable"
41
+ },
42
+ "ask": {
43
+ "type": "variable"
44
+ },
45
+ "bar_index": {
46
+ "type": "variable"
47
+ },
48
+ "barcolor": {
49
+ "type": "variable"
50
+ },
51
+ "bgcolor": {
52
+ "type": "variable"
53
+ },
54
+ "bid": {
55
+ "type": "variable"
56
+ },
57
+ "close": {
58
+ "type": "variable"
59
+ },
60
+ "date": {
61
+ "type": "variable"
62
+ },
63
+ "datetime": {
64
+ "type": "variable"
65
+ },
66
+ "dayofmonth": {
67
+ "type": "property"
68
+ },
69
+ "dayofweek": {
70
+ "type": "property"
71
+ },
72
+ "dt_time": {
73
+ "type": "variable"
74
+ },
75
+ "extra_fields": {
76
+ "type": "variable"
77
+ },
78
+ "fill": {
79
+ "type": "variable"
80
+ },
81
+ "fixnan": {
82
+ "type": "variable"
83
+ },
84
+ "high": {
85
+ "type": "variable"
86
+ },
87
+ "hl2": {
88
+ "type": "variable"
89
+ },
90
+ "hlc3": {
91
+ "type": "variable"
92
+ },
93
+ "hlcc4": {
94
+ "type": "variable"
95
+ },
96
+ "hour": {
97
+ "type": "property"
98
+ },
99
+ "input": {
100
+ "type": "variable"
101
+ },
102
+ "is_na": {
103
+ "type": "variable"
104
+ },
105
+ "last_bar_index": {
106
+ "type": "variable"
107
+ },
108
+ "last_bar_time": {
109
+ "type": "variable"
110
+ },
111
+ "low": {
112
+ "type": "variable"
113
+ },
114
+ "max_bars_back": {
115
+ "type": "variable"
116
+ },
117
+ "minute": {
118
+ "type": "property"
119
+ },
120
+ "month": {
121
+ "type": "property"
122
+ },
123
+ "na": {
124
+ "type": "property"
125
+ },
126
+ "nz": {
127
+ "type": "variable"
128
+ },
129
+ "ohlc4": {
130
+ "type": "variable"
131
+ },
132
+ "open": {
133
+ "type": "variable"
134
+ },
135
+ "plotarrow": {
136
+ "type": "variable"
137
+ },
138
+ "plotbar": {
139
+ "type": "variable"
140
+ },
141
+ "plotcandle": {
142
+ "type": "variable"
143
+ },
144
+ "plotchar": {
145
+ "type": "variable"
146
+ },
147
+ "plotshape": {
148
+ "type": "variable"
149
+ },
150
+ "script": {
151
+ "type": "variable"
152
+ },
153
+ "second": {
154
+ "type": "property"
155
+ },
156
+ "session_module": {
157
+ "type": "variable"
158
+ },
159
+ "sys": {
160
+ "type": "variable"
161
+ },
162
+ "time": {
163
+ "type": "property"
164
+ },
165
+ "time_close": {
166
+ "type": "property"
167
+ },
168
+ "time_tradingday": {
169
+ "type": "property"
170
+ },
171
+ "timedelta": {
172
+ "type": "variable"
173
+ },
174
+ "timeframe_module": {
175
+ "type": "variable"
176
+ },
177
+ "timenow": {
178
+ "type": "property"
179
+ },
180
+ "timestamp": {
181
+ "type": "variable"
182
+ },
183
+ "volume": {
184
+ "type": "variable"
185
+ },
186
+ "weekofyear": {
187
+ "type": "property"
188
+ },
189
+ "year": {
190
+ "type": "property"
191
+ }
192
+ },
193
+ "lib.adjustment": {
194
+ "dividends": {
195
+ "type": "variable"
196
+ },
197
+ "none": {
198
+ "type": "variable"
199
+ },
200
+ "splits": {
201
+ "type": "variable"
202
+ }
203
+ },
204
+ "lib.alert": {
205
+ "AlertEnum": {
206
+ "type": "variable"
207
+ },
208
+ "alert": {
209
+ "type": "variable"
210
+ },
211
+ "freq_all": {
212
+ "type": "variable"
213
+ },
214
+ "freq_once_per_bar": {
215
+ "type": "variable"
216
+ },
217
+ "freq_once_per_bar_close": {
218
+ "type": "variable"
219
+ }
220
+ },
221
+ "lib.array": {
222
+ "Box": {
223
+ "type": "variable"
224
+ },
225
+ "Color": {
226
+ "type": "variable"
227
+ },
228
+ "Label": {
229
+ "type": "variable"
230
+ },
231
+ "Line": {
232
+ "type": "variable"
233
+ },
234
+ "LineFill": {
235
+ "type": "variable"
236
+ },
237
+ "NA": {
238
+ "type": "variable"
239
+ },
240
+ "SequenceView": {
241
+ "type": "variable"
242
+ },
243
+ "Table": {
244
+ "type": "variable"
245
+ },
246
+ "abs": {
247
+ "type": "variable"
248
+ },
249
+ "avg": {
250
+ "type": "variable"
251
+ },
252
+ "binary_search": {
253
+ "type": "variable"
254
+ },
255
+ "binary_search_leftmost": {
256
+ "type": "variable"
257
+ },
258
+ "binary_search_rightmost": {
259
+ "type": "variable"
260
+ },
261
+ "builtins": {
262
+ "type": "variable"
263
+ },
264
+ "clear": {
265
+ "type": "variable"
266
+ },
267
+ "concat": {
268
+ "type": "variable"
269
+ },
270
+ "copy": {
271
+ "type": "variable"
272
+ },
273
+ "covariance": {
274
+ "type": "variable"
275
+ },
276
+ "every": {
277
+ "type": "variable"
278
+ },
279
+ "fill": {
280
+ "type": "variable"
281
+ },
282
+ "first": {
283
+ "type": "variable"
284
+ },
285
+ "from_items": {
286
+ "type": "variable"
287
+ },
288
+ "get": {
289
+ "type": "variable"
290
+ },
291
+ "includes": {
292
+ "type": "variable"
293
+ },
294
+ "indexof": {
295
+ "type": "variable"
296
+ },
297
+ "insert": {
298
+ "type": "variable"
299
+ },
300
+ "join": {
301
+ "type": "variable"
302
+ },
303
+ "last": {
304
+ "type": "variable"
305
+ },
306
+ "lastindexof": {
307
+ "type": "variable"
308
+ },
309
+ "math": {
310
+ "type": "variable"
311
+ },
312
+ "max": {
313
+ "type": "variable"
314
+ },
315
+ "median": {
316
+ "type": "variable"
317
+ },
318
+ "min": {
319
+ "type": "variable"
320
+ },
321
+ "mode": {
322
+ "type": "variable"
323
+ },
324
+ "na_float": {
325
+ "type": "variable"
326
+ },
327
+ "new": {
328
+ "type": "variable"
329
+ },
330
+ "new_bool": {
331
+ "type": "variable"
332
+ },
333
+ "new_box": {
334
+ "type": "variable"
335
+ },
336
+ "new_color": {
337
+ "type": "variable"
338
+ },
339
+ "new_float": {
340
+ "type": "variable"
341
+ },
342
+ "new_int": {
343
+ "type": "variable"
344
+ },
345
+ "new_label": {
346
+ "type": "variable"
347
+ },
348
+ "new_line": {
349
+ "type": "variable"
350
+ },
351
+ "new_linefill": {
352
+ "type": "variable"
353
+ },
354
+ "new_string": {
355
+ "type": "variable"
356
+ },
357
+ "new_table": {
358
+ "type": "variable"
359
+ },
360
+ "percentile_linear_interpolation": {
361
+ "type": "variable"
362
+ },
363
+ "percentile_nearest_rank": {
364
+ "type": "variable"
365
+ },
366
+ "percentrank": {
367
+ "type": "variable"
368
+ },
369
+ "pop": {
370
+ "type": "variable"
371
+ },
372
+ "push": {
373
+ "type": "variable"
374
+ },
375
+ "range": {
376
+ "type": "variable"
377
+ },
378
+ "remove": {
379
+ "type": "variable"
380
+ },
381
+ "reverse": {
382
+ "type": "variable"
383
+ },
384
+ "set": {
385
+ "type": "variable"
386
+ },
387
+ "shift": {
388
+ "type": "variable"
389
+ },
390
+ "size": {
391
+ "type": "variable"
392
+ },
393
+ "slice": {
394
+ "type": "variable"
395
+ },
396
+ "some": {
397
+ "type": "variable"
398
+ },
399
+ "sort": {
400
+ "type": "variable"
401
+ },
402
+ "sort_indices": {
403
+ "type": "variable"
404
+ },
405
+ "standardize": {
406
+ "type": "variable"
407
+ },
408
+ "statistics": {
409
+ "type": "variable"
410
+ },
411
+ "stdev": {
412
+ "type": "variable"
413
+ },
414
+ "sum": {
415
+ "type": "variable"
416
+ },
417
+ "unshift": {
418
+ "type": "variable"
419
+ },
420
+ "variance": {
421
+ "type": "variable"
422
+ }
423
+ },
424
+ "lib.barmerge": {
425
+ "BarMerge": {
426
+ "type": "variable"
427
+ },
428
+ "gaps_off": {
429
+ "type": "variable"
430
+ },
431
+ "gaps_on": {
432
+ "type": "variable"
433
+ },
434
+ "lookahead_last_closed": {
435
+ "type": "variable"
436
+ },
437
+ "lookahead_off": {
438
+ "type": "variable"
439
+ },
440
+ "lookahead_on": {
441
+ "type": "variable"
442
+ }
443
+ },
444
+ "lib.barstate": {
445
+ "isconfirmed": {
446
+ "type": "variable"
447
+ },
448
+ "isfirst": {
449
+ "type": "variable"
450
+ },
451
+ "ishistory": {
452
+ "type": "variable"
453
+ },
454
+ "islast": {
455
+ "type": "variable"
456
+ },
457
+ "islastconfirmedhistory": {
458
+ "type": "variable"
459
+ },
460
+ "isnew": {
461
+ "type": "variable"
462
+ },
463
+ "isrealtime": {
464
+ "type": "variable"
465
+ }
466
+ },
467
+ "lib.box": {
468
+ "Box": {
469
+ "type": "variable"
470
+ },
471
+ "ChartPoint": {
472
+ "type": "variable"
473
+ },
474
+ "NA": {
475
+ "type": "variable"
476
+ },
477
+ "PyneFloat": {
478
+ "type": "variable"
479
+ },
480
+ "PyneInt": {
481
+ "type": "variable"
482
+ },
483
+ "all": {
484
+ "type": "property"
485
+ },
486
+ "copy": {
487
+ "type": "variable"
488
+ },
489
+ "delete": {
490
+ "type": "variable"
491
+ },
492
+ "get_bottom": {
493
+ "type": "variable"
494
+ },
495
+ "get_left": {
496
+ "type": "variable"
497
+ },
498
+ "get_right": {
499
+ "type": "variable"
500
+ },
501
+ "get_top": {
502
+ "type": "variable"
503
+ },
504
+ "lib": {
505
+ "type": "variable"
506
+ },
507
+ "na_float": {
508
+ "type": "variable"
509
+ },
510
+ "na_int": {
511
+ "type": "variable"
512
+ },
513
+ "new": {
514
+ "type": "variable"
515
+ },
516
+ "next_vid": {
517
+ "type": "variable"
518
+ },
519
+ "set_bgcolor": {
520
+ "type": "variable"
521
+ },
522
+ "set_border_color": {
523
+ "type": "variable"
524
+ },
525
+ "set_border_style": {
526
+ "type": "variable"
527
+ },
528
+ "set_border_width": {
529
+ "type": "variable"
530
+ },
531
+ "set_bottom": {
532
+ "type": "variable"
533
+ },
534
+ "set_bottom_right_point": {
535
+ "type": "variable"
536
+ },
537
+ "set_extend": {
538
+ "type": "variable"
539
+ },
540
+ "set_left": {
541
+ "type": "variable"
542
+ },
543
+ "set_lefttop": {
544
+ "type": "variable"
545
+ },
546
+ "set_right": {
547
+ "type": "variable"
548
+ },
549
+ "set_rightbottom": {
550
+ "type": "variable"
551
+ },
552
+ "set_text": {
553
+ "type": "variable"
554
+ },
555
+ "set_text_color": {
556
+ "type": "variable"
557
+ },
558
+ "set_text_font_family": {
559
+ "type": "variable"
560
+ },
561
+ "set_text_formatting": {
562
+ "type": "variable"
563
+ },
564
+ "set_text_halign": {
565
+ "type": "variable"
566
+ },
567
+ "set_text_size": {
568
+ "type": "variable"
569
+ },
570
+ "set_text_valign": {
571
+ "type": "variable"
572
+ },
573
+ "set_text_wrap": {
574
+ "type": "variable"
575
+ },
576
+ "set_top": {
577
+ "type": "variable"
578
+ },
579
+ "set_top_left_point": {
580
+ "type": "variable"
581
+ },
582
+ "set_xloc": {
583
+ "type": "variable"
584
+ }
585
+ },
586
+ "lib.chart": {
587
+ "ChartPoint": {
588
+ "type": "variable"
589
+ },
590
+ "Color": {
591
+ "type": "variable"
592
+ },
593
+ "NA": {
594
+ "type": "variable"
595
+ },
596
+ "bg_color": {
597
+ "type": "variable"
598
+ },
599
+ "fg_color": {
600
+ "type": "variable"
601
+ },
602
+ "in_seconds": {
603
+ "type": "variable"
604
+ },
605
+ "is_heikinashi": {
606
+ "type": "variable"
607
+ },
608
+ "is_kagi": {
609
+ "type": "variable"
610
+ },
611
+ "is_linebreak": {
612
+ "type": "variable"
613
+ },
614
+ "is_pnf": {
615
+ "type": "variable"
616
+ },
617
+ "is_range": {
618
+ "type": "variable"
619
+ },
620
+ "is_renko": {
621
+ "type": "variable"
622
+ },
623
+ "is_standard": {
624
+ "type": "variable"
625
+ },
626
+ "left_visible_bar_time": {
627
+ "type": "property"
628
+ },
629
+ "lib": {
630
+ "type": "variable"
631
+ },
632
+ "point": {
633
+ "type": "variable"
634
+ },
635
+ "right_visible_bar_time": {
636
+ "type": "property"
637
+ }
638
+ },
639
+ "lib.color": {
640
+ "Color": {
641
+ "type": "variable"
642
+ },
643
+ "NA": {
644
+ "type": "variable"
645
+ },
646
+ "aqua": {
647
+ "type": "variable"
648
+ },
649
+ "b": {
650
+ "type": "variable"
651
+ },
652
+ "black": {
653
+ "type": "variable"
654
+ },
655
+ "blue": {
656
+ "type": "variable"
657
+ },
658
+ "from_gradient": {
659
+ "type": "variable"
660
+ },
661
+ "fuchsia": {
662
+ "type": "variable"
663
+ },
664
+ "g": {
665
+ "type": "variable"
666
+ },
667
+ "gray": {
668
+ "type": "variable"
669
+ },
670
+ "green": {
671
+ "type": "variable"
672
+ },
673
+ "lime": {
674
+ "type": "variable"
675
+ },
676
+ "maroon": {
677
+ "type": "variable"
678
+ },
679
+ "navy": {
680
+ "type": "variable"
681
+ },
682
+ "new": {
683
+ "type": "variable"
684
+ },
685
+ "olive": {
686
+ "type": "variable"
687
+ },
688
+ "orange": {
689
+ "type": "variable"
690
+ },
691
+ "purple": {
692
+ "type": "variable"
693
+ },
694
+ "r": {
695
+ "type": "variable"
696
+ },
697
+ "red": {
698
+ "type": "variable"
699
+ },
700
+ "rgb": {
701
+ "type": "variable"
702
+ },
703
+ "silver": {
704
+ "type": "variable"
705
+ },
706
+ "t": {
707
+ "type": "variable"
708
+ },
709
+ "teal": {
710
+ "type": "variable"
711
+ },
712
+ "white": {
713
+ "type": "variable"
714
+ },
715
+ "yellow": {
716
+ "type": "variable"
717
+ }
718
+ },
719
+ "lib.currency": {
720
+ "AED": {
721
+ "type": "variable"
722
+ },
723
+ "ARS": {
724
+ "type": "variable"
725
+ },
726
+ "AUD": {
727
+ "type": "variable"
728
+ },
729
+ "BDT": {
730
+ "type": "variable"
731
+ },
732
+ "BHD": {
733
+ "type": "variable"
734
+ },
735
+ "BRL": {
736
+ "type": "variable"
737
+ },
738
+ "BTC": {
739
+ "type": "variable"
740
+ },
741
+ "CAD": {
742
+ "type": "variable"
743
+ },
744
+ "CHF": {
745
+ "type": "variable"
746
+ },
747
+ "CLP": {
748
+ "type": "variable"
749
+ },
750
+ "CNY": {
751
+ "type": "variable"
752
+ },
753
+ "COP": {
754
+ "type": "variable"
755
+ },
756
+ "CZK": {
757
+ "type": "variable"
758
+ },
759
+ "Currency": {
760
+ "type": "variable"
761
+ },
762
+ "DKK": {
763
+ "type": "variable"
764
+ },
765
+ "EGP": {
766
+ "type": "variable"
767
+ },
768
+ "ETH": {
769
+ "type": "variable"
770
+ },
771
+ "EUR": {
772
+ "type": "variable"
773
+ },
774
+ "GBP": {
775
+ "type": "variable"
776
+ },
777
+ "HKD": {
778
+ "type": "variable"
779
+ },
780
+ "HUF": {
781
+ "type": "variable"
782
+ },
783
+ "IDR": {
784
+ "type": "variable"
785
+ },
786
+ "ILS": {
787
+ "type": "variable"
788
+ },
789
+ "INR": {
790
+ "type": "variable"
791
+ },
792
+ "ISK": {
793
+ "type": "variable"
794
+ },
795
+ "JPY": {
796
+ "type": "variable"
797
+ },
798
+ "KES": {
799
+ "type": "variable"
800
+ },
801
+ "KRW": {
802
+ "type": "variable"
803
+ },
804
+ "KWD": {
805
+ "type": "variable"
806
+ },
807
+ "LKR": {
808
+ "type": "variable"
809
+ },
810
+ "MAD": {
811
+ "type": "variable"
812
+ },
813
+ "MXN": {
814
+ "type": "variable"
815
+ },
816
+ "MYR": {
817
+ "type": "variable"
818
+ },
819
+ "NGN": {
820
+ "type": "variable"
821
+ },
822
+ "NOK": {
823
+ "type": "variable"
824
+ },
825
+ "NONE": {
826
+ "type": "variable"
827
+ },
828
+ "NZD": {
829
+ "type": "variable"
830
+ },
831
+ "PEN": {
832
+ "type": "variable"
833
+ },
834
+ "PHP": {
835
+ "type": "variable"
836
+ },
837
+ "PKR": {
838
+ "type": "variable"
839
+ },
840
+ "PLN": {
841
+ "type": "variable"
842
+ },
843
+ "QAR": {
844
+ "type": "variable"
845
+ },
846
+ "RON": {
847
+ "type": "variable"
848
+ },
849
+ "RSD": {
850
+ "type": "variable"
851
+ },
852
+ "RUB": {
853
+ "type": "variable"
854
+ },
855
+ "SAR": {
856
+ "type": "variable"
857
+ },
858
+ "SEK": {
859
+ "type": "variable"
860
+ },
861
+ "SGD": {
862
+ "type": "variable"
863
+ },
864
+ "THB": {
865
+ "type": "variable"
866
+ },
867
+ "TND": {
868
+ "type": "variable"
869
+ },
870
+ "TRY": {
871
+ "type": "variable"
872
+ },
873
+ "TWD": {
874
+ "type": "variable"
875
+ },
876
+ "USD": {
877
+ "type": "variable"
878
+ },
879
+ "USDT": {
880
+ "type": "variable"
881
+ },
882
+ "VES": {
883
+ "type": "variable"
884
+ },
885
+ "VND": {
886
+ "type": "variable"
887
+ },
888
+ "ZAR": {
889
+ "type": "variable"
890
+ }
891
+ },
892
+ "lib.dayofweek": {
893
+ "DayOfWeek": {
894
+ "type": "variable"
895
+ },
896
+ "dayofweek": {
897
+ "type": "property"
898
+ },
899
+ "friday": {
900
+ "type": "variable"
901
+ },
902
+ "monday": {
903
+ "type": "variable"
904
+ },
905
+ "saturday": {
906
+ "type": "variable"
907
+ },
908
+ "sunday": {
909
+ "type": "variable"
910
+ },
911
+ "thursday": {
912
+ "type": "variable"
913
+ },
914
+ "tuesday": {
915
+ "type": "variable"
916
+ },
917
+ "wednesday": {
918
+ "type": "variable"
919
+ }
920
+ },
921
+ "lib.display": {
922
+ "Display": {
923
+ "type": "variable"
924
+ },
925
+ "all": {
926
+ "type": "variable"
927
+ },
928
+ "data_window": {
929
+ "type": "variable"
930
+ },
931
+ "none": {
932
+ "type": "variable"
933
+ },
934
+ "pane": {
935
+ "type": "variable"
936
+ },
937
+ "price_scale": {
938
+ "type": "variable"
939
+ },
940
+ "status_line": {
941
+ "type": "variable"
942
+ }
943
+ },
944
+ "lib.dividends": {
945
+ "Dividends": {
946
+ "type": "variable"
947
+ },
948
+ "future_amount": {
949
+ "type": "variable"
950
+ },
951
+ "future_ex_date": {
952
+ "type": "variable"
953
+ },
954
+ "future_pay_date": {
955
+ "type": "variable"
956
+ },
957
+ "gross": {
958
+ "type": "variable"
959
+ },
960
+ "na_float": {
961
+ "type": "variable"
962
+ },
963
+ "net": {
964
+ "type": "variable"
965
+ }
966
+ },
967
+ "lib.earnings": {
968
+ "Earnings": {
969
+ "type": "variable"
970
+ },
971
+ "NA": {
972
+ "type": "variable"
973
+ },
974
+ "actual": {
975
+ "type": "variable"
976
+ },
977
+ "estimate": {
978
+ "type": "variable"
979
+ },
980
+ "future_eps": {
981
+ "type": "variable"
982
+ },
983
+ "future_period_end_time": {
984
+ "type": "variable"
985
+ },
986
+ "future_revenue": {
987
+ "type": "variable"
988
+ },
989
+ "future_time": {
990
+ "type": "variable"
991
+ },
992
+ "na_float": {
993
+ "type": "variable"
994
+ },
995
+ "standardized": {
996
+ "type": "variable"
997
+ }
998
+ },
999
+ "lib.extend": {
1000
+ "Extend": {
1001
+ "type": "variable"
1002
+ },
1003
+ "both": {
1004
+ "type": "variable"
1005
+ },
1006
+ "left": {
1007
+ "type": "variable"
1008
+ },
1009
+ "none": {
1010
+ "type": "variable"
1011
+ },
1012
+ "right": {
1013
+ "type": "variable"
1014
+ }
1015
+ },
1016
+ "lib.font": {
1017
+ "FontFamilyEnum": {
1018
+ "type": "variable"
1019
+ },
1020
+ "family_default": {
1021
+ "type": "variable"
1022
+ },
1023
+ "family_monospace": {
1024
+ "type": "variable"
1025
+ }
1026
+ },
1027
+ "lib.footprint": {
1028
+ "Footprint": {
1029
+ "type": "variable"
1030
+ },
1031
+ "VolumeRow": {
1032
+ "type": "variable"
1033
+ },
1034
+ "buy_volume": {
1035
+ "type": "variable"
1036
+ },
1037
+ "delta": {
1038
+ "type": "variable"
1039
+ },
1040
+ "poc": {
1041
+ "type": "variable"
1042
+ },
1043
+ "sell_volume": {
1044
+ "type": "variable"
1045
+ },
1046
+ "total_volume": {
1047
+ "type": "variable"
1048
+ },
1049
+ "vah": {
1050
+ "type": "variable"
1051
+ },
1052
+ "val": {
1053
+ "type": "variable"
1054
+ }
1055
+ },
1056
+ "lib.format": {
1057
+ "Format": {
1058
+ "type": "variable"
1059
+ },
1060
+ "inherit": {
1061
+ "type": "variable"
1062
+ },
1063
+ "mintick": {
1064
+ "type": "variable"
1065
+ },
1066
+ "percent": {
1067
+ "type": "variable"
1068
+ },
1069
+ "price": {
1070
+ "type": "variable"
1071
+ },
1072
+ "volume": {
1073
+ "type": "variable"
1074
+ }
1075
+ },
1076
+ "lib.hline": {
1077
+ "HLine": {
1078
+ "type": "variable"
1079
+ },
1080
+ "HLineEnum": {
1081
+ "type": "variable"
1082
+ },
1083
+ "PlotMeta": {
1084
+ "type": "variable"
1085
+ },
1086
+ "hline": {
1087
+ "type": "variable"
1088
+ },
1089
+ "lib": {
1090
+ "type": "variable"
1091
+ },
1092
+ "style_dashed": {
1093
+ "type": "variable"
1094
+ },
1095
+ "style_dotted": {
1096
+ "type": "variable"
1097
+ },
1098
+ "style_solid": {
1099
+ "type": "variable"
1100
+ }
1101
+ },
1102
+ "lib.label": {
1103
+ "ChartPoint": {
1104
+ "type": "variable"
1105
+ },
1106
+ "Label": {
1107
+ "type": "variable"
1108
+ },
1109
+ "LabelStyleEnum": {
1110
+ "type": "variable"
1111
+ },
1112
+ "NA": {
1113
+ "type": "variable"
1114
+ },
1115
+ "PyneFloat": {
1116
+ "type": "variable"
1117
+ },
1118
+ "PyneInt": {
1119
+ "type": "variable"
1120
+ },
1121
+ "PyneStr": {
1122
+ "type": "variable"
1123
+ },
1124
+ "all": {
1125
+ "type": "property"
1126
+ },
1127
+ "copy": {
1128
+ "type": "variable"
1129
+ },
1130
+ "delete": {
1131
+ "type": "variable"
1132
+ },
1133
+ "get_text": {
1134
+ "type": "variable"
1135
+ },
1136
+ "get_x": {
1137
+ "type": "variable"
1138
+ },
1139
+ "get_y": {
1140
+ "type": "variable"
1141
+ },
1142
+ "lib": {
1143
+ "type": "variable"
1144
+ },
1145
+ "na_float": {
1146
+ "type": "variable"
1147
+ },
1148
+ "na_int": {
1149
+ "type": "variable"
1150
+ },
1151
+ "new": {
1152
+ "type": "variable"
1153
+ },
1154
+ "next_vid": {
1155
+ "type": "variable"
1156
+ },
1157
+ "set_color": {
1158
+ "type": "variable"
1159
+ },
1160
+ "set_size": {
1161
+ "type": "variable"
1162
+ },
1163
+ "set_style": {
1164
+ "type": "variable"
1165
+ },
1166
+ "set_text": {
1167
+ "type": "variable"
1168
+ },
1169
+ "set_textalign": {
1170
+ "type": "variable"
1171
+ },
1172
+ "set_textcolor": {
1173
+ "type": "variable"
1174
+ },
1175
+ "set_tooltip": {
1176
+ "type": "variable"
1177
+ },
1178
+ "set_x": {
1179
+ "type": "variable"
1180
+ },
1181
+ "set_xloc": {
1182
+ "type": "variable"
1183
+ },
1184
+ "set_xy": {
1185
+ "type": "variable"
1186
+ },
1187
+ "set_y": {
1188
+ "type": "variable"
1189
+ },
1190
+ "set_yloc": {
1191
+ "type": "variable"
1192
+ },
1193
+ "style_arrowdown": {
1194
+ "type": "variable"
1195
+ },
1196
+ "style_arrowup": {
1197
+ "type": "variable"
1198
+ },
1199
+ "style_circle": {
1200
+ "type": "variable"
1201
+ },
1202
+ "style_cross": {
1203
+ "type": "variable"
1204
+ },
1205
+ "style_diamond": {
1206
+ "type": "variable"
1207
+ },
1208
+ "style_flag": {
1209
+ "type": "variable"
1210
+ },
1211
+ "style_label_center": {
1212
+ "type": "variable"
1213
+ },
1214
+ "style_label_down": {
1215
+ "type": "variable"
1216
+ },
1217
+ "style_label_left": {
1218
+ "type": "variable"
1219
+ },
1220
+ "style_label_lower_left": {
1221
+ "type": "variable"
1222
+ },
1223
+ "style_label_lower_right": {
1224
+ "type": "variable"
1225
+ },
1226
+ "style_label_right": {
1227
+ "type": "variable"
1228
+ },
1229
+ "style_label_up": {
1230
+ "type": "variable"
1231
+ },
1232
+ "style_label_upper_left": {
1233
+ "type": "variable"
1234
+ },
1235
+ "style_label_upper_right": {
1236
+ "type": "variable"
1237
+ },
1238
+ "style_none": {
1239
+ "type": "variable"
1240
+ },
1241
+ "style_square": {
1242
+ "type": "variable"
1243
+ },
1244
+ "style_text_outline": {
1245
+ "type": "variable"
1246
+ },
1247
+ "style_triangledown": {
1248
+ "type": "variable"
1249
+ },
1250
+ "style_triangleup": {
1251
+ "type": "variable"
1252
+ },
1253
+ "style_xcross": {
1254
+ "type": "variable"
1255
+ }
1256
+ },
1257
+ "lib.line": {
1258
+ "ChartPoint": {
1259
+ "type": "variable"
1260
+ },
1261
+ "Line": {
1262
+ "type": "variable"
1263
+ },
1264
+ "LineEnum": {
1265
+ "type": "variable"
1266
+ },
1267
+ "NA": {
1268
+ "type": "variable"
1269
+ },
1270
+ "PyneFloat": {
1271
+ "type": "variable"
1272
+ },
1273
+ "PyneInt": {
1274
+ "type": "variable"
1275
+ },
1276
+ "all": {
1277
+ "type": "property"
1278
+ },
1279
+ "copy": {
1280
+ "type": "variable"
1281
+ },
1282
+ "delete": {
1283
+ "type": "variable"
1284
+ },
1285
+ "get_price": {
1286
+ "type": "variable"
1287
+ },
1288
+ "get_x1": {
1289
+ "type": "variable"
1290
+ },
1291
+ "get_x2": {
1292
+ "type": "variable"
1293
+ },
1294
+ "get_y1": {
1295
+ "type": "variable"
1296
+ },
1297
+ "get_y2": {
1298
+ "type": "variable"
1299
+ },
1300
+ "lib": {
1301
+ "type": "variable"
1302
+ },
1303
+ "na_float": {
1304
+ "type": "variable"
1305
+ },
1306
+ "na_int": {
1307
+ "type": "variable"
1308
+ },
1309
+ "new": {
1310
+ "type": "variable"
1311
+ },
1312
+ "next_vid": {
1313
+ "type": "variable"
1314
+ },
1315
+ "set_color": {
1316
+ "type": "variable"
1317
+ },
1318
+ "set_extend": {
1319
+ "type": "variable"
1320
+ },
1321
+ "set_first_point": {
1322
+ "type": "variable"
1323
+ },
1324
+ "set_second_point": {
1325
+ "type": "variable"
1326
+ },
1327
+ "set_style": {
1328
+ "type": "variable"
1329
+ },
1330
+ "set_width": {
1331
+ "type": "variable"
1332
+ },
1333
+ "set_x1": {
1334
+ "type": "variable"
1335
+ },
1336
+ "set_x2": {
1337
+ "type": "variable"
1338
+ },
1339
+ "set_xloc": {
1340
+ "type": "variable"
1341
+ },
1342
+ "set_xy1": {
1343
+ "type": "variable"
1344
+ },
1345
+ "set_xy2": {
1346
+ "type": "variable"
1347
+ },
1348
+ "set_y1": {
1349
+ "type": "variable"
1350
+ },
1351
+ "set_y2": {
1352
+ "type": "variable"
1353
+ },
1354
+ "style_arrow_both": {
1355
+ "type": "variable"
1356
+ },
1357
+ "style_arrow_left": {
1358
+ "type": "variable"
1359
+ },
1360
+ "style_arrow_right": {
1361
+ "type": "variable"
1362
+ },
1363
+ "style_dashed": {
1364
+ "type": "variable"
1365
+ },
1366
+ "style_dotted": {
1367
+ "type": "variable"
1368
+ },
1369
+ "style_solid": {
1370
+ "type": "variable"
1371
+ }
1372
+ },
1373
+ "lib.linefill": {
1374
+ "Line": {
1375
+ "type": "variable"
1376
+ },
1377
+ "LineFill": {
1378
+ "type": "variable"
1379
+ },
1380
+ "NA": {
1381
+ "type": "variable"
1382
+ },
1383
+ "delete": {
1384
+ "type": "variable"
1385
+ },
1386
+ "get_line1": {
1387
+ "type": "variable"
1388
+ },
1389
+ "get_line2": {
1390
+ "type": "variable"
1391
+ },
1392
+ "new": {
1393
+ "type": "variable"
1394
+ },
1395
+ "next_vid": {
1396
+ "type": "variable"
1397
+ },
1398
+ "set_color": {
1399
+ "type": "variable"
1400
+ }
1401
+ },
1402
+ "lib.location": {
1403
+ "Location": {
1404
+ "type": "variable"
1405
+ },
1406
+ "abovebar": {
1407
+ "type": "variable"
1408
+ },
1409
+ "absolute": {
1410
+ "type": "variable"
1411
+ },
1412
+ "belowbar": {
1413
+ "type": "variable"
1414
+ },
1415
+ "bottom": {
1416
+ "type": "variable"
1417
+ },
1418
+ "top": {
1419
+ "type": "variable"
1420
+ }
1421
+ },
1422
+ "lib.log": {
1423
+ "DURABLE_LOG_WIDTH": {
1424
+ "type": "variable"
1425
+ },
1426
+ "Path": {
1427
+ "type": "variable"
1428
+ },
1429
+ "PineLogFormatter": {
1430
+ "type": "variable"
1431
+ },
1432
+ "PineRichHandler": {
1433
+ "type": "variable"
1434
+ },
1435
+ "SecurityFileFormatter": {
1436
+ "type": "variable"
1437
+ },
1438
+ "UTC": {
1439
+ "type": "variable"
1440
+ },
1441
+ "broker_debug": {
1442
+ "type": "variable"
1443
+ },
1444
+ "broker_error": {
1445
+ "type": "variable"
1446
+ },
1447
+ "broker_info": {
1448
+ "type": "variable"
1449
+ },
1450
+ "broker_warning": {
1451
+ "type": "variable"
1452
+ },
1453
+ "datetime": {
1454
+ "type": "variable"
1455
+ },
1456
+ "error": {
1457
+ "type": "variable"
1458
+ },
1459
+ "handler": {
1460
+ "type": "variable"
1461
+ },
1462
+ "info": {
1463
+ "type": "variable"
1464
+ },
1465
+ "lib": {
1466
+ "type": "variable"
1467
+ },
1468
+ "logger": {
1469
+ "type": "variable"
1470
+ },
1471
+ "logging": {
1472
+ "type": "variable"
1473
+ },
1474
+ "ohlcv_info": {
1475
+ "type": "variable"
1476
+ },
1477
+ "os": {
1478
+ "type": "variable"
1479
+ },
1480
+ "rich": {
1481
+ "type": "variable"
1482
+ },
1483
+ "setup_security_file_log": {
1484
+ "type": "variable"
1485
+ },
1486
+ "sim_info": {
1487
+ "type": "variable"
1488
+ },
1489
+ "sys": {
1490
+ "type": "variable"
1491
+ },
1492
+ "warning": {
1493
+ "type": "variable"
1494
+ }
1495
+ },
1496
+ "lib.map": {
1497
+ "NA": {
1498
+ "type": "variable"
1499
+ },
1500
+ "clear": {
1501
+ "type": "variable"
1502
+ },
1503
+ "contains": {
1504
+ "type": "variable"
1505
+ },
1506
+ "copy": {
1507
+ "type": "variable"
1508
+ },
1509
+ "get": {
1510
+ "type": "variable"
1511
+ },
1512
+ "keys": {
1513
+ "type": "variable"
1514
+ },
1515
+ "new": {
1516
+ "type": "variable"
1517
+ },
1518
+ "put": {
1519
+ "type": "variable"
1520
+ },
1521
+ "put_all": {
1522
+ "type": "variable"
1523
+ },
1524
+ "remove": {
1525
+ "type": "variable"
1526
+ },
1527
+ "size": {
1528
+ "type": "variable"
1529
+ },
1530
+ "values": {
1531
+ "type": "variable"
1532
+ }
1533
+ },
1534
+ "lib.math": {
1535
+ "Decimal": {
1536
+ "type": "variable"
1537
+ },
1538
+ "NA": {
1539
+ "type": "variable"
1540
+ },
1541
+ "PyneFloat": {
1542
+ "type": "variable"
1543
+ },
1544
+ "PyneInt": {
1545
+ "type": "variable"
1546
+ },
1547
+ "ROUND_HALF_UP": {
1548
+ "type": "variable"
1549
+ },
1550
+ "abs": {
1551
+ "type": "variable"
1552
+ },
1553
+ "acos": {
1554
+ "type": "variable"
1555
+ },
1556
+ "asin": {
1557
+ "type": "variable"
1558
+ },
1559
+ "atan": {
1560
+ "type": "variable"
1561
+ },
1562
+ "avg": {
1563
+ "type": "variable"
1564
+ },
1565
+ "builtins": {
1566
+ "type": "variable"
1567
+ },
1568
+ "ceil": {
1569
+ "type": "variable"
1570
+ },
1571
+ "cos": {
1572
+ "type": "variable"
1573
+ },
1574
+ "e": {
1575
+ "type": "variable"
1576
+ },
1577
+ "exp": {
1578
+ "type": "variable"
1579
+ },
1580
+ "floor": {
1581
+ "type": "variable"
1582
+ },
1583
+ "localcontext": {
1584
+ "type": "variable"
1585
+ },
1586
+ "log": {
1587
+ "type": "variable"
1588
+ },
1589
+ "log10": {
1590
+ "type": "variable"
1591
+ },
1592
+ "math": {
1593
+ "type": "variable"
1594
+ },
1595
+ "max": {
1596
+ "type": "variable"
1597
+ },
1598
+ "min": {
1599
+ "type": "variable"
1600
+ },
1601
+ "na_float": {
1602
+ "type": "variable"
1603
+ },
1604
+ "phi": {
1605
+ "type": "variable"
1606
+ },
1607
+ "pi": {
1608
+ "type": "variable"
1609
+ },
1610
+ "pow": {
1611
+ "type": "variable"
1612
+ },
1613
+ "random": {
1614
+ "type": "variable"
1615
+ },
1616
+ "round": {
1617
+ "type": "variable"
1618
+ },
1619
+ "round_to_mintick": {
1620
+ "type": "variable"
1621
+ },
1622
+ "rphi": {
1623
+ "type": "variable"
1624
+ },
1625
+ "sign": {
1626
+ "type": "variable"
1627
+ },
1628
+ "sin": {
1629
+ "type": "variable"
1630
+ },
1631
+ "sqrt": {
1632
+ "type": "variable"
1633
+ },
1634
+ "sum": {
1635
+ "type": "variable"
1636
+ },
1637
+ "syminfo": {
1638
+ "type": "variable"
1639
+ },
1640
+ "tan": {
1641
+ "type": "variable"
1642
+ },
1643
+ "todegrees": {
1644
+ "type": "variable"
1645
+ },
1646
+ "toradians": {
1647
+ "type": "variable"
1648
+ }
1649
+ },
1650
+ "lib.matrix": {
1651
+ "Matrix": {
1652
+ "type": "variable"
1653
+ },
1654
+ "NA": {
1655
+ "type": "variable"
1656
+ },
1657
+ "add_col": {
1658
+ "type": "variable"
1659
+ },
1660
+ "add_row": {
1661
+ "type": "variable"
1662
+ },
1663
+ "all": {
1664
+ "type": "property"
1665
+ },
1666
+ "annotations": {
1667
+ "type": "variable"
1668
+ },
1669
+ "avg": {
1670
+ "type": "variable"
1671
+ },
1672
+ "col": {
1673
+ "type": "variable"
1674
+ },
1675
+ "columns": {
1676
+ "type": "variable"
1677
+ },
1678
+ "concat": {
1679
+ "type": "variable"
1680
+ },
1681
+ "copy": {
1682
+ "type": "variable"
1683
+ },
1684
+ "delete": {
1685
+ "type": "variable"
1686
+ },
1687
+ "det": {
1688
+ "type": "variable"
1689
+ },
1690
+ "diff": {
1691
+ "type": "variable"
1692
+ },
1693
+ "eigenvalues": {
1694
+ "type": "variable"
1695
+ },
1696
+ "eigenvectors": {
1697
+ "type": "variable"
1698
+ },
1699
+ "elements_count": {
1700
+ "type": "variable"
1701
+ },
1702
+ "fill": {
1703
+ "type": "variable"
1704
+ },
1705
+ "get": {
1706
+ "type": "variable"
1707
+ },
1708
+ "inv": {
1709
+ "type": "variable"
1710
+ },
1711
+ "is_antidiagonal": {
1712
+ "type": "variable"
1713
+ },
1714
+ "is_antisymmetric": {
1715
+ "type": "variable"
1716
+ },
1717
+ "is_binary": {
1718
+ "type": "variable"
1719
+ },
1720
+ "is_diagonal": {
1721
+ "type": "variable"
1722
+ },
1723
+ "is_identity": {
1724
+ "type": "variable"
1725
+ },
1726
+ "is_square": {
1727
+ "type": "variable"
1728
+ },
1729
+ "is_stochastic": {
1730
+ "type": "variable"
1731
+ },
1732
+ "is_symmetric": {
1733
+ "type": "variable"
1734
+ },
1735
+ "is_triangular": {
1736
+ "type": "variable"
1737
+ },
1738
+ "is_zero": {
1739
+ "type": "variable"
1740
+ },
1741
+ "kron": {
1742
+ "type": "variable"
1743
+ },
1744
+ "max": {
1745
+ "type": "variable"
1746
+ },
1747
+ "median": {
1748
+ "type": "variable"
1749
+ },
1750
+ "min": {
1751
+ "type": "variable"
1752
+ },
1753
+ "mode": {
1754
+ "type": "variable"
1755
+ },
1756
+ "mult": {
1757
+ "type": "variable"
1758
+ },
1759
+ "na_float": {
1760
+ "type": "variable"
1761
+ },
1762
+ "new": {
1763
+ "type": "variable"
1764
+ },
1765
+ "pinv": {
1766
+ "type": "variable"
1767
+ },
1768
+ "pow": {
1769
+ "type": "variable"
1770
+ },
1771
+ "rank": {
1772
+ "type": "variable"
1773
+ },
1774
+ "remove_col": {
1775
+ "type": "variable"
1776
+ },
1777
+ "remove_row": {
1778
+ "type": "variable"
1779
+ },
1780
+ "reshape": {
1781
+ "type": "variable"
1782
+ },
1783
+ "reverse": {
1784
+ "type": "variable"
1785
+ },
1786
+ "row": {
1787
+ "type": "variable"
1788
+ },
1789
+ "rows": {
1790
+ "type": "variable"
1791
+ },
1792
+ "set": {
1793
+ "type": "variable"
1794
+ },
1795
+ "sort": {
1796
+ "type": "variable"
1797
+ },
1798
+ "submatrix": {
1799
+ "type": "variable"
1800
+ },
1801
+ "sum": {
1802
+ "type": "variable"
1803
+ },
1804
+ "swap_columns": {
1805
+ "type": "variable"
1806
+ },
1807
+ "swap_rows": {
1808
+ "type": "variable"
1809
+ },
1810
+ "trace": {
1811
+ "type": "variable"
1812
+ },
1813
+ "transpose": {
1814
+ "type": "variable"
1815
+ }
1816
+ },
1817
+ "lib.order": {
1818
+ "Order": {
1819
+ "type": "variable"
1820
+ },
1821
+ "ascending": {
1822
+ "type": "variable"
1823
+ },
1824
+ "descending": {
1825
+ "type": "variable"
1826
+ }
1827
+ },
1828
+ "lib.pivotpointtype": {
1829
+ "PivotPointType": {
1830
+ "type": "variable"
1831
+ },
1832
+ "camarilla": {
1833
+ "type": "variable"
1834
+ },
1835
+ "classic": {
1836
+ "type": "variable"
1837
+ },
1838
+ "dm": {
1839
+ "type": "variable"
1840
+ },
1841
+ "fibonacci": {
1842
+ "type": "variable"
1843
+ },
1844
+ "traditional": {
1845
+ "type": "variable"
1846
+ },
1847
+ "woodie": {
1848
+ "type": "variable"
1849
+ }
1850
+ },
1851
+ "lib.plot": {
1852
+ "Plot": {
1853
+ "type": "variable"
1854
+ },
1855
+ "PlotEnum": {
1856
+ "type": "variable"
1857
+ },
1858
+ "PlotMeta": {
1859
+ "type": "variable"
1860
+ },
1861
+ "linestyle_dashed": {
1862
+ "type": "variable"
1863
+ },
1864
+ "linestyle_dotted": {
1865
+ "type": "variable"
1866
+ },
1867
+ "linestyle_solid": {
1868
+ "type": "variable"
1869
+ },
1870
+ "plot": {
1871
+ "type": "variable"
1872
+ },
1873
+ "style_area": {
1874
+ "type": "variable"
1875
+ },
1876
+ "style_areabr": {
1877
+ "type": "variable"
1878
+ },
1879
+ "style_circles": {
1880
+ "type": "variable"
1881
+ },
1882
+ "style_columns": {
1883
+ "type": "variable"
1884
+ },
1885
+ "style_cross": {
1886
+ "type": "variable"
1887
+ },
1888
+ "style_histogram": {
1889
+ "type": "variable"
1890
+ },
1891
+ "style_line": {
1892
+ "type": "variable"
1893
+ },
1894
+ "style_linebr": {
1895
+ "type": "variable"
1896
+ },
1897
+ "style_stepline": {
1898
+ "type": "variable"
1899
+ },
1900
+ "style_stepline_diamond": {
1901
+ "type": "variable"
1902
+ },
1903
+ "style_steplinebr": {
1904
+ "type": "variable"
1905
+ },
1906
+ "sys": {
1907
+ "type": "variable"
1908
+ }
1909
+ },
1910
+ "lib.polyline": {
1911
+ "ChartPoint": {
1912
+ "type": "variable"
1913
+ },
1914
+ "LineEnum": {
1915
+ "type": "variable"
1916
+ },
1917
+ "NA": {
1918
+ "type": "variable"
1919
+ },
1920
+ "Polyline": {
1921
+ "type": "variable"
1922
+ },
1923
+ "all": {
1924
+ "type": "property"
1925
+ },
1926
+ "delete": {
1927
+ "type": "variable"
1928
+ },
1929
+ "lib": {
1930
+ "type": "variable"
1931
+ },
1932
+ "new": {
1933
+ "type": "variable"
1934
+ },
1935
+ "next_vid": {
1936
+ "type": "variable"
1937
+ },
1938
+ "style_arrow_both": {
1939
+ "type": "variable"
1940
+ },
1941
+ "style_arrow_left": {
1942
+ "type": "variable"
1943
+ },
1944
+ "style_arrow_right": {
1945
+ "type": "variable"
1946
+ },
1947
+ "style_dashed": {
1948
+ "type": "variable"
1949
+ },
1950
+ "style_dotted": {
1951
+ "type": "variable"
1952
+ },
1953
+ "style_solid": {
1954
+ "type": "variable"
1955
+ }
1956
+ },
1957
+ "lib.position": {
1958
+ "Position": {
1959
+ "type": "variable"
1960
+ },
1961
+ "bottom_center": {
1962
+ "type": "variable"
1963
+ },
1964
+ "bottom_left": {
1965
+ "type": "variable"
1966
+ },
1967
+ "bottom_right": {
1968
+ "type": "variable"
1969
+ },
1970
+ "middle_center": {
1971
+ "type": "variable"
1972
+ },
1973
+ "middle_left": {
1974
+ "type": "variable"
1975
+ },
1976
+ "middle_right": {
1977
+ "type": "variable"
1978
+ },
1979
+ "top_center": {
1980
+ "type": "variable"
1981
+ },
1982
+ "top_left": {
1983
+ "type": "variable"
1984
+ },
1985
+ "top_right": {
1986
+ "type": "variable"
1987
+ }
1988
+ },
1989
+ "lib.request": {
1990
+ "Footprint": {
1991
+ "type": "variable"
1992
+ },
1993
+ "NA": {
1994
+ "type": "variable"
1995
+ },
1996
+ "annotations": {
1997
+ "type": "variable"
1998
+ },
1999
+ "currency_rate": {
2000
+ "type": "variable"
2001
+ },
2002
+ "dividends": {
2003
+ "type": "variable"
2004
+ },
2005
+ "earnings": {
2006
+ "type": "variable"
2007
+ },
2008
+ "economic": {
2009
+ "type": "variable"
2010
+ },
2011
+ "financial": {
2012
+ "type": "variable"
2013
+ },
2014
+ "footprint": {
2015
+ "type": "variable"
2016
+ },
2017
+ "nan": {
2018
+ "type": "variable"
2019
+ },
2020
+ "quandl": {
2021
+ "type": "variable"
2022
+ },
2023
+ "security": {
2024
+ "type": "variable"
2025
+ },
2026
+ "security_lower_tf": {
2027
+ "type": "variable"
2028
+ },
2029
+ "seed": {
2030
+ "type": "variable"
2031
+ },
2032
+ "splits": {
2033
+ "type": "variable"
2034
+ }
2035
+ },
2036
+ "lib.runtime": {
2037
+ "error": {
2038
+ "type": "variable"
2039
+ }
2040
+ },
2041
+ "lib.scale": {
2042
+ "Scale": {
2043
+ "type": "variable"
2044
+ },
2045
+ "left": {
2046
+ "type": "variable"
2047
+ },
2048
+ "none": {
2049
+ "type": "variable"
2050
+ },
2051
+ "right": {
2052
+ "type": "variable"
2053
+ }
2054
+ },
2055
+ "lib.session": {
2056
+ "Session": {
2057
+ "type": "variable"
2058
+ },
2059
+ "datetime": {
2060
+ "type": "variable"
2061
+ },
2062
+ "extended": {
2063
+ "type": "variable"
2064
+ },
2065
+ "isfirstbar": {
2066
+ "type": "property"
2067
+ },
2068
+ "isfirstbar_regular": {
2069
+ "type": "property"
2070
+ },
2071
+ "islastbar": {
2072
+ "type": "property"
2073
+ },
2074
+ "islastbar_regular": {
2075
+ "type": "property"
2076
+ },
2077
+ "ismarket": {
2078
+ "type": "property"
2079
+ },
2080
+ "ispostmarket": {
2081
+ "type": "property"
2082
+ },
2083
+ "ispremarket": {
2084
+ "type": "property"
2085
+ },
2086
+ "lib": {
2087
+ "type": "variable"
2088
+ },
2089
+ "regular": {
2090
+ "type": "variable"
2091
+ },
2092
+ "syminfo": {
2093
+ "type": "variable"
2094
+ },
2095
+ "timedelta": {
2096
+ "type": "variable"
2097
+ },
2098
+ "timeframe": {
2099
+ "type": "variable"
2100
+ }
2101
+ },
2102
+ "lib.shape": {
2103
+ "Shape": {
2104
+ "type": "variable"
2105
+ },
2106
+ "arrowdown": {
2107
+ "type": "variable"
2108
+ },
2109
+ "arrowup": {
2110
+ "type": "variable"
2111
+ },
2112
+ "circle": {
2113
+ "type": "variable"
2114
+ },
2115
+ "cross": {
2116
+ "type": "variable"
2117
+ },
2118
+ "diamond": {
2119
+ "type": "variable"
2120
+ },
2121
+ "flag": {
2122
+ "type": "variable"
2123
+ },
2124
+ "labeldown": {
2125
+ "type": "variable"
2126
+ },
2127
+ "labelup": {
2128
+ "type": "variable"
2129
+ },
2130
+ "square": {
2131
+ "type": "variable"
2132
+ },
2133
+ "triangledown": {
2134
+ "type": "variable"
2135
+ },
2136
+ "triangleup": {
2137
+ "type": "variable"
2138
+ },
2139
+ "xcross": {
2140
+ "type": "variable"
2141
+ }
2142
+ },
2143
+ "lib.size": {
2144
+ "Size": {
2145
+ "type": "variable"
2146
+ },
2147
+ "auto": {
2148
+ "type": "variable"
2149
+ },
2150
+ "huge": {
2151
+ "type": "variable"
2152
+ },
2153
+ "large": {
2154
+ "type": "variable"
2155
+ },
2156
+ "normal": {
2157
+ "type": "variable"
2158
+ },
2159
+ "small": {
2160
+ "type": "variable"
2161
+ },
2162
+ "tiny": {
2163
+ "type": "variable"
2164
+ }
2165
+ },
2166
+ "lib.splits": {
2167
+ "Splits": {
2168
+ "type": "variable"
2169
+ },
2170
+ "denominator": {
2171
+ "type": "variable"
2172
+ },
2173
+ "numerator": {
2174
+ "type": "variable"
2175
+ }
2176
+ },
2177
+ "lib.strategy": {
2178
+ "ABC": {
2179
+ "type": "variable"
2180
+ },
2181
+ "ADOPTED_STARTUP_ENTRY_ID": {
2182
+ "type": "variable"
2183
+ },
2184
+ "IntEnum": {
2185
+ "type": "variable"
2186
+ },
2187
+ "NA": {
2188
+ "type": "variable"
2189
+ },
2190
+ "OHLCV": {
2191
+ "type": "variable"
2192
+ },
2193
+ "Order": {
2194
+ "type": "variable"
2195
+ },
2196
+ "PositionBase": {
2197
+ "type": "variable"
2198
+ },
2199
+ "PriceOrderBook": {
2200
+ "type": "variable"
2201
+ },
2202
+ "PyneFloat": {
2203
+ "type": "variable"
2204
+ },
2205
+ "PyneInt": {
2206
+ "type": "variable"
2207
+ },
2208
+ "PyneStr": {
2209
+ "type": "variable"
2210
+ },
2211
+ "QtyType": {
2212
+ "type": "variable"
2213
+ },
2214
+ "SimPosition": {
2215
+ "type": "variable"
2216
+ },
2217
+ "Trade": {
2218
+ "type": "variable"
2219
+ },
2220
+ "UTC": {
2221
+ "type": "variable"
2222
+ },
2223
+ "abstractmethod": {
2224
+ "type": "variable"
2225
+ },
2226
+ "avg_losing_trade": {
2227
+ "type": "property"
2228
+ },
2229
+ "avg_trade": {
2230
+ "type": "property"
2231
+ },
2232
+ "avg_winning_trade": {
2233
+ "type": "property"
2234
+ },
2235
+ "bisect_left": {
2236
+ "type": "variable"
2237
+ },
2238
+ "cancel": {
2239
+ "type": "variable"
2240
+ },
2241
+ "cancel_all": {
2242
+ "type": "variable"
2243
+ },
2244
+ "cash": {
2245
+ "type": "variable"
2246
+ },
2247
+ "close": {
2248
+ "type": "variable"
2249
+ },
2250
+ "close_all": {
2251
+ "type": "variable"
2252
+ },
2253
+ "closedtrades": {
2254
+ "type": "property"
2255
+ },
2256
+ "convert_to_account": {
2257
+ "type": "variable"
2258
+ },
2259
+ "convert_to_symbol": {
2260
+ "type": "variable"
2261
+ },
2262
+ "copy": {
2263
+ "type": "variable"
2264
+ },
2265
+ "datetime": {
2266
+ "type": "variable"
2267
+ },
2268
+ "defaultdict": {
2269
+ "type": "variable"
2270
+ },
2271
+ "deque": {
2272
+ "type": "variable"
2273
+ },
2274
+ "entry": {
2275
+ "type": "variable"
2276
+ },
2277
+ "equity": {
2278
+ "type": "property"
2279
+ },
2280
+ "eventrades": {
2281
+ "type": "property"
2282
+ },
2283
+ "exit": {
2284
+ "type": "variable"
2285
+ },
2286
+ "fixed": {
2287
+ "type": "variable"
2288
+ },
2289
+ "grossloss": {
2290
+ "type": "property"
2291
+ },
2292
+ "grossprofit": {
2293
+ "type": "property"
2294
+ },
2295
+ "initial_capital": {
2296
+ "type": "property"
2297
+ },
2298
+ "insort": {
2299
+ "type": "variable"
2300
+ },
2301
+ "lib": {
2302
+ "type": "variable"
2303
+ },
2304
+ "long": {
2305
+ "type": "variable"
2306
+ },
2307
+ "losstrades": {
2308
+ "type": "property"
2309
+ },
2310
+ "margin_liquidation_price": {
2311
+ "type": "property"
2312
+ },
2313
+ "math": {
2314
+ "type": "variable"
2315
+ },
2316
+ "max_drawdown": {
2317
+ "type": "property"
2318
+ },
2319
+ "max_drawdown_percent": {
2320
+ "type": "property"
2321
+ },
2322
+ "max_runup": {
2323
+ "type": "property"
2324
+ },
2325
+ "na_float": {
2326
+ "type": "variable"
2327
+ },
2328
+ "na_str": {
2329
+ "type": "variable"
2330
+ },
2331
+ "netprofit": {
2332
+ "type": "property"
2333
+ },
2334
+ "netprofit_percent": {
2335
+ "type": "property"
2336
+ },
2337
+ "openprofit": {
2338
+ "type": "property"
2339
+ },
2340
+ "openprofit_percent": {
2341
+ "type": "property"
2342
+ },
2343
+ "opentrades": {
2344
+ "type": "property"
2345
+ },
2346
+ "order": {
2347
+ "type": "variable"
2348
+ },
2349
+ "percent_of_equity": {
2350
+ "type": "variable"
2351
+ },
2352
+ "position_avg_price": {
2353
+ "type": "property"
2354
+ },
2355
+ "position_size": {
2356
+ "type": "property"
2357
+ },
2358
+ "short": {
2359
+ "type": "variable"
2360
+ },
2361
+ "struct": {
2362
+ "type": "variable"
2363
+ },
2364
+ "syminfo": {
2365
+ "type": "variable"
2366
+ },
2367
+ "wintrades": {
2368
+ "type": "property"
2369
+ }
2370
+ },
2371
+ "lib.strategy.closedtrades": {
2372
+ "NA": {
2373
+ "type": "variable"
2374
+ },
2375
+ "PyneFloat": {
2376
+ "type": "variable"
2377
+ },
2378
+ "PyneInt": {
2379
+ "type": "variable"
2380
+ },
2381
+ "PyneStr": {
2382
+ "type": "variable"
2383
+ },
2384
+ "closedtrades": {
2385
+ "type": "property"
2386
+ },
2387
+ "commission": {
2388
+ "type": "variable"
2389
+ },
2390
+ "entry_bar_index": {
2391
+ "type": "variable"
2392
+ },
2393
+ "entry_comment": {
2394
+ "type": "variable"
2395
+ },
2396
+ "entry_id": {
2397
+ "type": "variable"
2398
+ },
2399
+ "entry_price": {
2400
+ "type": "variable"
2401
+ },
2402
+ "entry_time": {
2403
+ "type": "variable"
2404
+ },
2405
+ "exit_bar_index": {
2406
+ "type": "variable"
2407
+ },
2408
+ "exit_comment": {
2409
+ "type": "variable"
2410
+ },
2411
+ "exit_id": {
2412
+ "type": "variable"
2413
+ },
2414
+ "exit_price": {
2415
+ "type": "variable"
2416
+ },
2417
+ "exit_time": {
2418
+ "type": "variable"
2419
+ },
2420
+ "lib": {
2421
+ "type": "variable"
2422
+ },
2423
+ "max_drawdown": {
2424
+ "type": "variable"
2425
+ },
2426
+ "max_drawdown_percent": {
2427
+ "type": "variable"
2428
+ },
2429
+ "max_runup": {
2430
+ "type": "variable"
2431
+ },
2432
+ "max_runup_percent": {
2433
+ "type": "variable"
2434
+ },
2435
+ "na_float": {
2436
+ "type": "variable"
2437
+ },
2438
+ "profit": {
2439
+ "type": "variable"
2440
+ },
2441
+ "profit_percent": {
2442
+ "type": "variable"
2443
+ },
2444
+ "size": {
2445
+ "type": "variable"
2446
+ }
2447
+ },
2448
+ "lib.strategy.commission": {
2449
+ "Commission": {
2450
+ "type": "variable"
2451
+ },
2452
+ "cash_per_contract": {
2453
+ "type": "variable"
2454
+ },
2455
+ "cash_per_order": {
2456
+ "type": "variable"
2457
+ },
2458
+ "percent": {
2459
+ "type": "variable"
2460
+ }
2461
+ },
2462
+ "lib.strategy.direction": {
2463
+ "Direction": {
2464
+ "type": "variable"
2465
+ },
2466
+ "all": {
2467
+ "type": "variable"
2468
+ },
2469
+ "long": {
2470
+ "type": "variable"
2471
+ },
2472
+ "short": {
2473
+ "type": "variable"
2474
+ }
2475
+ },
2476
+ "lib.strategy.oca": {
2477
+ "Oca": {
2478
+ "type": "variable"
2479
+ },
2480
+ "cancel": {
2481
+ "type": "variable"
2482
+ },
2483
+ "none": {
2484
+ "type": "variable"
2485
+ },
2486
+ "reduce": {
2487
+ "type": "variable"
2488
+ }
2489
+ },
2490
+ "lib.strategy.opentrades": {
2491
+ "NA": {
2492
+ "type": "variable"
2493
+ },
2494
+ "PyneFloat": {
2495
+ "type": "variable"
2496
+ },
2497
+ "PyneInt": {
2498
+ "type": "variable"
2499
+ },
2500
+ "PyneStr": {
2501
+ "type": "variable"
2502
+ },
2503
+ "capital_held": {
2504
+ "type": "property"
2505
+ },
2506
+ "commission": {
2507
+ "type": "variable"
2508
+ },
2509
+ "entry_bar_index": {
2510
+ "type": "variable"
2511
+ },
2512
+ "entry_comment": {
2513
+ "type": "variable"
2514
+ },
2515
+ "entry_id": {
2516
+ "type": "variable"
2517
+ },
2518
+ "entry_price": {
2519
+ "type": "variable"
2520
+ },
2521
+ "entry_time": {
2522
+ "type": "variable"
2523
+ },
2524
+ "lib": {
2525
+ "type": "variable"
2526
+ },
2527
+ "max_drawdown": {
2528
+ "type": "variable"
2529
+ },
2530
+ "max_drawdown_percent": {
2531
+ "type": "variable"
2532
+ },
2533
+ "max_runup": {
2534
+ "type": "variable"
2535
+ },
2536
+ "max_runup_percent": {
2537
+ "type": "variable"
2538
+ },
2539
+ "na_float": {
2540
+ "type": "variable"
2541
+ },
2542
+ "opentrades": {
2543
+ "type": "property"
2544
+ },
2545
+ "profit": {
2546
+ "type": "variable"
2547
+ },
2548
+ "profit_percent": {
2549
+ "type": "variable"
2550
+ },
2551
+ "size": {
2552
+ "type": "variable"
2553
+ },
2554
+ "syminfo": {
2555
+ "type": "variable"
2556
+ }
2557
+ },
2558
+ "lib.strategy.risk": {
2559
+ "NA": {
2560
+ "type": "variable"
2561
+ },
2562
+ "PyneStr": {
2563
+ "type": "variable"
2564
+ },
2565
+ "allow_entry_in": {
2566
+ "type": "variable"
2567
+ },
2568
+ "lib": {
2569
+ "type": "variable"
2570
+ },
2571
+ "max_cons_loss_days": {
2572
+ "type": "variable"
2573
+ },
2574
+ "max_drawdown": {
2575
+ "type": "variable"
2576
+ },
2577
+ "max_intraday_filled_orders": {
2578
+ "type": "variable"
2579
+ },
2580
+ "max_intraday_loss": {
2581
+ "type": "variable"
2582
+ },
2583
+ "max_position_size": {
2584
+ "type": "variable"
2585
+ },
2586
+ "strategy": {
2587
+ "type": "variable"
2588
+ }
2589
+ },
2590
+ "lib.string": {
2591
+ "Decimal": {
2592
+ "type": "variable"
2593
+ },
2594
+ "Format": {
2595
+ "type": "variable"
2596
+ },
2597
+ "NA": {
2598
+ "type": "variable"
2599
+ },
2600
+ "PyneBool": {
2601
+ "type": "variable"
2602
+ },
2603
+ "PyneFloat": {
2604
+ "type": "variable"
2605
+ },
2606
+ "PyneInt": {
2607
+ "type": "variable"
2608
+ },
2609
+ "PyneStr": {
2610
+ "type": "variable"
2611
+ },
2612
+ "ROUND_HALF_UP": {
2613
+ "type": "variable"
2614
+ },
2615
+ "UTC": {
2616
+ "type": "variable"
2617
+ },
2618
+ "contains": {
2619
+ "type": "variable"
2620
+ },
2621
+ "datetime": {
2622
+ "type": "variable"
2623
+ },
2624
+ "endswith": {
2625
+ "type": "variable"
2626
+ },
2627
+ "format": {
2628
+ "type": "variable"
2629
+ },
2630
+ "format_time": {
2631
+ "type": "variable"
2632
+ },
2633
+ "length": {
2634
+ "type": "variable"
2635
+ },
2636
+ "lib": {
2637
+ "type": "variable"
2638
+ },
2639
+ "lower": {
2640
+ "type": "variable"
2641
+ },
2642
+ "lru_cache": {
2643
+ "type": "variable"
2644
+ },
2645
+ "match": {
2646
+ "type": "variable"
2647
+ },
2648
+ "na_float": {
2649
+ "type": "variable"
2650
+ },
2651
+ "pos": {
2652
+ "type": "variable"
2653
+ },
2654
+ "re": {
2655
+ "type": "variable"
2656
+ },
2657
+ "repeat": {
2658
+ "type": "variable"
2659
+ },
2660
+ "replace": {
2661
+ "type": "variable"
2662
+ },
2663
+ "replace_all": {
2664
+ "type": "variable"
2665
+ },
2666
+ "safe_convert": {
2667
+ "type": "variable"
2668
+ },
2669
+ "split": {
2670
+ "type": "variable"
2671
+ },
2672
+ "startswith": {
2673
+ "type": "variable"
2674
+ },
2675
+ "substring": {
2676
+ "type": "variable"
2677
+ },
2678
+ "tonumber": {
2679
+ "type": "variable"
2680
+ },
2681
+ "tostring": {
2682
+ "type": "variable"
2683
+ },
2684
+ "trim": {
2685
+ "type": "variable"
2686
+ },
2687
+ "upper": {
2688
+ "type": "variable"
2689
+ }
2690
+ },
2691
+ "lib.syminfo": {
2692
+ "NA": {
2693
+ "type": "variable"
2694
+ },
2695
+ "Session": {
2696
+ "type": "variable"
2697
+ },
2698
+ "SymInfoInterval": {
2699
+ "type": "variable"
2700
+ },
2701
+ "SymInfoSession": {
2702
+ "type": "variable"
2703
+ },
2704
+ "avg_spread": {
2705
+ "type": "variable"
2706
+ },
2707
+ "basecurrency": {
2708
+ "type": "variable"
2709
+ },
2710
+ "country": {
2711
+ "type": "variable"
2712
+ },
2713
+ "currency": {
2714
+ "type": "variable"
2715
+ },
2716
+ "current_contract": {
2717
+ "type": "variable"
2718
+ },
2719
+ "description": {
2720
+ "type": "variable"
2721
+ },
2722
+ "employees": {
2723
+ "type": "variable"
2724
+ },
2725
+ "expiration_date": {
2726
+ "type": "variable"
2727
+ },
2728
+ "industry": {
2729
+ "type": "variable"
2730
+ },
2731
+ "isin": {
2732
+ "type": "variable"
2733
+ },
2734
+ "main_tickerid": {
2735
+ "type": "variable"
2736
+ },
2737
+ "maker_fee": {
2738
+ "type": "variable"
2739
+ },
2740
+ "mincontract": {
2741
+ "type": "variable"
2742
+ },
2743
+ "minmove": {
2744
+ "type": "variable"
2745
+ },
2746
+ "mintick": {
2747
+ "type": "variable"
2748
+ },
2749
+ "na_float": {
2750
+ "type": "variable"
2751
+ },
2752
+ "opening_hours": {
2753
+ "type": "variable"
2754
+ },
2755
+ "period": {
2756
+ "type": "variable"
2757
+ },
2758
+ "pointvalue": {
2759
+ "type": "variable"
2760
+ },
2761
+ "prefix": {
2762
+ "type": "variable"
2763
+ },
2764
+ "pricescale": {
2765
+ "type": "variable"
2766
+ },
2767
+ "recommendations_buy": {
2768
+ "type": "variable"
2769
+ },
2770
+ "recommendations_buy_strong": {
2771
+ "type": "variable"
2772
+ },
2773
+ "recommendations_date": {
2774
+ "type": "variable"
2775
+ },
2776
+ "recommendations_hold": {
2777
+ "type": "variable"
2778
+ },
2779
+ "recommendations_sell": {
2780
+ "type": "variable"
2781
+ },
2782
+ "recommendations_sell_strong": {
2783
+ "type": "variable"
2784
+ },
2785
+ "recommendations_total": {
2786
+ "type": "variable"
2787
+ },
2788
+ "regular": {
2789
+ "type": "variable"
2790
+ },
2791
+ "root": {
2792
+ "type": "variable"
2793
+ },
2794
+ "sector": {
2795
+ "type": "variable"
2796
+ },
2797
+ "session": {
2798
+ "type": "variable"
2799
+ },
2800
+ "session_ends": {
2801
+ "type": "variable"
2802
+ },
2803
+ "session_starts": {
2804
+ "type": "variable"
2805
+ },
2806
+ "shareholders": {
2807
+ "type": "variable"
2808
+ },
2809
+ "shares_outstanding_float": {
2810
+ "type": "variable"
2811
+ },
2812
+ "shares_outstanding_total": {
2813
+ "type": "variable"
2814
+ },
2815
+ "taker_fee": {
2816
+ "type": "variable"
2817
+ },
2818
+ "target_price_average": {
2819
+ "type": "variable"
2820
+ },
2821
+ "target_price_date": {
2822
+ "type": "variable"
2823
+ },
2824
+ "target_price_estimates": {
2825
+ "type": "variable"
2826
+ },
2827
+ "target_price_high": {
2828
+ "type": "variable"
2829
+ },
2830
+ "target_price_low": {
2831
+ "type": "variable"
2832
+ },
2833
+ "target_price_median": {
2834
+ "type": "variable"
2835
+ },
2836
+ "ticker": {
2837
+ "type": "variable"
2838
+ },
2839
+ "tickerid": {
2840
+ "type": "variable"
2841
+ },
2842
+ "timezone": {
2843
+ "type": "variable"
2844
+ },
2845
+ "type": {
2846
+ "type": "variable"
2847
+ },
2848
+ "volumetype": {
2849
+ "type": "variable"
2850
+ }
2851
+ },
2852
+ "lib.ta": {
2853
+ "EPSILON": {
2854
+ "type": "variable"
2855
+ },
2856
+ "NA": {
2857
+ "type": "variable"
2858
+ },
2859
+ "Persistent": {
2860
+ "type": "variable"
2861
+ },
2862
+ "PyneBool": {
2863
+ "type": "variable"
2864
+ },
2865
+ "PyneFloat": {
2866
+ "type": "variable"
2867
+ },
2868
+ "PyneInt": {
2869
+ "type": "variable"
2870
+ },
2871
+ "Series": {
2872
+ "type": "variable"
2873
+ },
2874
+ "accdist": {
2875
+ "type": "property"
2876
+ },
2877
+ "alma": {
2878
+ "type": "variable"
2879
+ },
2880
+ "array": {
2881
+ "type": "variable"
2882
+ },
2883
+ "atr": {
2884
+ "type": "variable"
2885
+ },
2886
+ "bar_index": {
2887
+ "type": "variable"
2888
+ },
2889
+ "barssince": {
2890
+ "type": "variable"
2891
+ },
2892
+ "bb": {
2893
+ "type": "variable"
2894
+ },
2895
+ "bbw": {
2896
+ "type": "variable"
2897
+ },
2898
+ "builtins": {
2899
+ "type": "variable"
2900
+ },
2901
+ "cci": {
2902
+ "type": "variable"
2903
+ },
2904
+ "change": {
2905
+ "type": "variable"
2906
+ },
2907
+ "close": {
2908
+ "type": "variable"
2909
+ },
2910
+ "cmo": {
2911
+ "type": "variable"
2912
+ },
2913
+ "cog": {
2914
+ "type": "variable"
2915
+ },
2916
+ "correlation": {
2917
+ "type": "variable"
2918
+ },
2919
+ "cross": {
2920
+ "type": "variable"
2921
+ },
2922
+ "crossover": {
2923
+ "type": "variable"
2924
+ },
2925
+ "crossunder": {
2926
+ "type": "variable"
2927
+ },
2928
+ "cum": {
2929
+ "type": "variable"
2930
+ },
2931
+ "deque": {
2932
+ "type": "variable"
2933
+ },
2934
+ "dev": {
2935
+ "type": "variable"
2936
+ },
2937
+ "dmi": {
2938
+ "type": "variable"
2939
+ },
2940
+ "ema": {
2941
+ "type": "variable"
2942
+ },
2943
+ "falling": {
2944
+ "type": "variable"
2945
+ },
2946
+ "heapq": {
2947
+ "type": "variable"
2948
+ },
2949
+ "high": {
2950
+ "type": "variable"
2951
+ },
2952
+ "highest": {
2953
+ "type": "variable"
2954
+ },
2955
+ "highestbars": {
2956
+ "type": "variable"
2957
+ },
2958
+ "hl2": {
2959
+ "type": "variable"
2960
+ },
2961
+ "hlc3": {
2962
+ "type": "variable"
2963
+ },
2964
+ "hma": {
2965
+ "type": "variable"
2966
+ },
2967
+ "iii": {
2968
+ "type": "property"
2969
+ },
2970
+ "kc": {
2971
+ "type": "variable"
2972
+ },
2973
+ "kcw": {
2974
+ "type": "variable"
2975
+ },
2976
+ "lib_math": {
2977
+ "type": "variable"
2978
+ },
2979
+ "linreg": {
2980
+ "type": "variable"
2981
+ },
2982
+ "low": {
2983
+ "type": "variable"
2984
+ },
2985
+ "lowest": {
2986
+ "type": "variable"
2987
+ },
2988
+ "lowestbars": {
2989
+ "type": "variable"
2990
+ },
2991
+ "macd": {
2992
+ "type": "variable"
2993
+ },
2994
+ "math": {
2995
+ "type": "variable"
2996
+ },
2997
+ "max": {
2998
+ "type": "variable"
2999
+ },
3000
+ "max_bars_back": {
3001
+ "type": "variable"
3002
+ },
3003
+ "median": {
3004
+ "type": "variable"
3005
+ },
3006
+ "mfi": {
3007
+ "type": "variable"
3008
+ },
3009
+ "min": {
3010
+ "type": "variable"
3011
+ },
3012
+ "mode": {
3013
+ "type": "variable"
3014
+ },
3015
+ "mom": {
3016
+ "type": "variable"
3017
+ },
3018
+ "na_float": {
3019
+ "type": "variable"
3020
+ },
3021
+ "nvi": {
3022
+ "type": "property"
3023
+ },
3024
+ "obv": {
3025
+ "type": "property"
3026
+ },
3027
+ "open": {
3028
+ "type": "variable"
3029
+ },
3030
+ "percentile_linear_interpolation": {
3031
+ "type": "variable"
3032
+ },
3033
+ "percentile_nearest_rank": {
3034
+ "type": "variable"
3035
+ },
3036
+ "percentrank": {
3037
+ "type": "variable"
3038
+ },
3039
+ "pivot_point_levels": {
3040
+ "type": "variable"
3041
+ },
3042
+ "pivothigh": {
3043
+ "type": "variable"
3044
+ },
3045
+ "pivotlow": {
3046
+ "type": "variable"
3047
+ },
3048
+ "pvi": {
3049
+ "type": "property"
3050
+ },
3051
+ "pvt": {
3052
+ "type": "property"
3053
+ },
3054
+ "range": {
3055
+ "type": "variable"
3056
+ },
3057
+ "rci": {
3058
+ "type": "variable"
3059
+ },
3060
+ "rising": {
3061
+ "type": "variable"
3062
+ },
3063
+ "rma": {
3064
+ "type": "variable"
3065
+ },
3066
+ "roc": {
3067
+ "type": "variable"
3068
+ },
3069
+ "rsi": {
3070
+ "type": "variable"
3071
+ },
3072
+ "safe_convert": {
3073
+ "type": "variable"
3074
+ },
3075
+ "sar": {
3076
+ "type": "variable"
3077
+ },
3078
+ "session": {
3079
+ "type": "variable"
3080
+ },
3081
+ "sma": {
3082
+ "type": "variable"
3083
+ },
3084
+ "stdev": {
3085
+ "type": "variable"
3086
+ },
3087
+ "stoch": {
3088
+ "type": "variable"
3089
+ },
3090
+ "supertrend": {
3091
+ "type": "variable"
3092
+ },
3093
+ "swma": {
3094
+ "type": "variable"
3095
+ },
3096
+ "tr": {
3097
+ "type": "property"
3098
+ },
3099
+ "tsi": {
3100
+ "type": "variable"
3101
+ },
3102
+ "valuewhen": {
3103
+ "type": "variable"
3104
+ },
3105
+ "variance": {
3106
+ "type": "variable"
3107
+ },
3108
+ "volume": {
3109
+ "type": "variable"
3110
+ },
3111
+ "vwap": {
3112
+ "type": "property"
3113
+ },
3114
+ "vwma": {
3115
+ "type": "variable"
3116
+ },
3117
+ "wad": {
3118
+ "type": "property"
3119
+ },
3120
+ "wma": {
3121
+ "type": "variable"
3122
+ },
3123
+ "wpr": {
3124
+ "type": "variable"
3125
+ },
3126
+ "wvad": {
3127
+ "type": "property"
3128
+ }
3129
+ },
3130
+ "lib.table": {
3131
+ "NA": {
3132
+ "type": "variable"
3133
+ },
3134
+ "Table": {
3135
+ "type": "variable"
3136
+ },
3137
+ "all": {
3138
+ "type": "property"
3139
+ },
3140
+ "cell": {
3141
+ "type": "variable"
3142
+ },
3143
+ "cell_set_bgcolor": {
3144
+ "type": "variable"
3145
+ },
3146
+ "cell_set_height": {
3147
+ "type": "variable"
3148
+ },
3149
+ "cell_set_text": {
3150
+ "type": "variable"
3151
+ },
3152
+ "cell_set_text_color": {
3153
+ "type": "variable"
3154
+ },
3155
+ "cell_set_text_font_family": {
3156
+ "type": "variable"
3157
+ },
3158
+ "cell_set_text_formatting": {
3159
+ "type": "variable"
3160
+ },
3161
+ "cell_set_text_halign": {
3162
+ "type": "variable"
3163
+ },
3164
+ "cell_set_text_size": {
3165
+ "type": "variable"
3166
+ },
3167
+ "cell_set_text_valign": {
3168
+ "type": "variable"
3169
+ },
3170
+ "cell_set_tooltip": {
3171
+ "type": "variable"
3172
+ },
3173
+ "cell_set_width": {
3174
+ "type": "variable"
3175
+ },
3176
+ "clear": {
3177
+ "type": "variable"
3178
+ },
3179
+ "delete": {
3180
+ "type": "variable"
3181
+ },
3182
+ "merge_cells": {
3183
+ "type": "variable"
3184
+ },
3185
+ "new": {
3186
+ "type": "variable"
3187
+ },
3188
+ "next_vid": {
3189
+ "type": "variable"
3190
+ },
3191
+ "set_bgcolor": {
3192
+ "type": "variable"
3193
+ },
3194
+ "set_border_color": {
3195
+ "type": "variable"
3196
+ },
3197
+ "set_border_width": {
3198
+ "type": "variable"
3199
+ },
3200
+ "set_frame_color": {
3201
+ "type": "variable"
3202
+ },
3203
+ "set_frame_width": {
3204
+ "type": "variable"
3205
+ },
3206
+ "set_position": {
3207
+ "type": "variable"
3208
+ }
3209
+ },
3210
+ "lib.text": {
3211
+ "AlignEnum": {
3212
+ "type": "variable"
3213
+ },
3214
+ "FormatEnum": {
3215
+ "type": "variable"
3216
+ },
3217
+ "WrapEnum": {
3218
+ "type": "variable"
3219
+ },
3220
+ "align_bottom": {
3221
+ "type": "variable"
3222
+ },
3223
+ "align_center": {
3224
+ "type": "variable"
3225
+ },
3226
+ "align_left": {
3227
+ "type": "variable"
3228
+ },
3229
+ "align_right": {
3230
+ "type": "variable"
3231
+ },
3232
+ "align_top": {
3233
+ "type": "variable"
3234
+ },
3235
+ "format_bold": {
3236
+ "type": "variable"
3237
+ },
3238
+ "format_italic": {
3239
+ "type": "variable"
3240
+ },
3241
+ "format_none": {
3242
+ "type": "variable"
3243
+ },
3244
+ "wrap_auto": {
3245
+ "type": "variable"
3246
+ },
3247
+ "wrap_none": {
3248
+ "type": "variable"
3249
+ }
3250
+ },
3251
+ "lib.ticker": {
3252
+ "heikinashi": {
3253
+ "type": "variable"
3254
+ },
3255
+ "inherit": {
3256
+ "type": "variable"
3257
+ },
3258
+ "kagi": {
3259
+ "type": "variable"
3260
+ },
3261
+ "linebreak": {
3262
+ "type": "variable"
3263
+ },
3264
+ "modify": {
3265
+ "type": "variable"
3266
+ },
3267
+ "new": {
3268
+ "type": "variable"
3269
+ },
3270
+ "pointfigure": {
3271
+ "type": "variable"
3272
+ },
3273
+ "renko": {
3274
+ "type": "variable"
3275
+ },
3276
+ "standard": {
3277
+ "type": "variable"
3278
+ },
3279
+ "syminfo": {
3280
+ "type": "variable"
3281
+ }
3282
+ },
3283
+ "lib.timeframe": {
3284
+ "change": {
3285
+ "type": "variable"
3286
+ },
3287
+ "datetime": {
3288
+ "type": "variable"
3289
+ },
3290
+ "from_seconds": {
3291
+ "type": "variable"
3292
+ },
3293
+ "in_seconds": {
3294
+ "type": "variable"
3295
+ },
3296
+ "isdaily": {
3297
+ "type": "property"
3298
+ },
3299
+ "isdwm": {
3300
+ "type": "property"
3301
+ },
3302
+ "isintraday": {
3303
+ "type": "property"
3304
+ },
3305
+ "isminutes": {
3306
+ "type": "property"
3307
+ },
3308
+ "ismonthly": {
3309
+ "type": "property"
3310
+ },
3311
+ "isseconds": {
3312
+ "type": "property"
3313
+ },
3314
+ "isticks": {
3315
+ "type": "property"
3316
+ },
3317
+ "isweekly": {
3318
+ "type": "property"
3319
+ },
3320
+ "lib": {
3321
+ "type": "variable"
3322
+ },
3323
+ "lru_cache": {
3324
+ "type": "variable"
3325
+ },
3326
+ "main_period": {
3327
+ "type": "property"
3328
+ },
3329
+ "multiplier": {
3330
+ "type": "property"
3331
+ },
3332
+ "period": {
3333
+ "type": "property"
3334
+ },
3335
+ "timedelta": {
3336
+ "type": "variable"
3337
+ }
3338
+ },
3339
+ "lib.volume_row": {
3340
+ "VolumeRow": {
3341
+ "type": "variable"
3342
+ },
3343
+ "buy_volume": {
3344
+ "type": "variable"
3345
+ },
3346
+ "delta": {
3347
+ "type": "variable"
3348
+ },
3349
+ "down_price": {
3350
+ "type": "variable"
3351
+ },
3352
+ "sell_volume": {
3353
+ "type": "variable"
3354
+ },
3355
+ "total_volume": {
3356
+ "type": "variable"
3357
+ },
3358
+ "up_price": {
3359
+ "type": "variable"
3360
+ }
3361
+ },
3362
+ "lib.xloc": {
3363
+ "XLoc": {
3364
+ "type": "variable"
3365
+ },
3366
+ "bar_index": {
3367
+ "type": "variable"
3368
+ },
3369
+ "bar_time": {
3370
+ "type": "variable"
3371
+ }
3372
+ },
3373
+ "lib.yloc": {
3374
+ "YLoc": {
3375
+ "type": "variable"
3376
+ },
3377
+ "abovebar": {
3378
+ "type": "variable"
3379
+ },
3380
+ "belowbar": {
3381
+ "type": "variable"
3382
+ },
3383
+ "price": {
3384
+ "type": "variable"
3385
+ }
3386
+ }
3387
+ }