pinets 0.7.1 → 0.7.2

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.
package/README.md CHANGED
@@ -96,8 +96,8 @@ plot(ema9, title = '9 EMA', color = color.yellow)
96
96
  plot(ema18, title = '18 EMA', color = color.red)
97
97
  `;
98
98
 
99
- const { result, plots } = await pineTS.run(pineScriptCode);
100
- // Access results: result.ema9, result.ema18, result.bull_bias, result.bear_bias
99
+ const { plots } = await pineTS.run(pineScriptCode);
100
+ //access ema9 and ema18 plots data
101
101
  ```
102
102
 
103
103
  > **⚠️ Note**: Native Pine Script support is experimental. Some indicators may fail if they use API features not yet implemented. Refer to the [API coverage badges](#pine-script-api-coverage) to check compatibility.