sbx-react-stock-chart 3.5.58 → 3.5.60

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
@@ -131,6 +131,7 @@ type Asset = {
131
131
  key: string;
132
132
  symbol: string;
133
133
  digits?: number;
134
+ tick_size?: number; // minimum valid price increment for SL/TP drag rounding
134
135
  timeFrame?: number; // seconds, e.g. 60 / 300 / 14400
135
136
  type?: ChartType;
136
137
  indicators?: Record<string, any>;
@@ -141,6 +142,8 @@ type Asset = {
141
142
  };
142
143
  ```
143
144
 
145
+ Order `cmd` values: `0` buy, `1` sell, `2` buy limit, `3` sell limit, `4` buy stop, `5` sell stop. Pending orders use `open_price` as the activation price line.
146
+
144
147
  ### Feed
145
148
 
146
149
  ```ts