candleview 2.4.5 → 2.4.6
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 +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +26 -26
- package/dist/index.mjs +4348 -4373
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ const App = () => {
|
|
|
68
68
|
ai={true}
|
|
69
69
|
timezone="America/New_York"
|
|
70
70
|
timeframe="1m"
|
|
71
|
-
isCloseInternalTimeFrameCalculation={
|
|
71
|
+
isCloseInternalTimeFrameCalculation={true} // the internal timeframe calculation logic has been disabled.
|
|
72
72
|
timeframeCallbacks={{
|
|
73
73
|
"1m": () => {
|
|
74
74
|
// Implement a custom data source switching mechanism for a 1m timeframe.
|
package/dist/index.d.ts
CHANGED
|
@@ -152,6 +152,7 @@ declare interface CandleViewProps {
|
|
|
152
152
|
ai?: boolean;
|
|
153
153
|
aiconfigs?: AIConfig[];
|
|
154
154
|
terminal?: boolean;
|
|
155
|
+
isOpenViewportSegmentation?: boolean;
|
|
155
156
|
isCloseInternalTimeFrameCalculation?: boolean;
|
|
156
157
|
timeframeCallbacks?: Partial<Record<TimeframeEnum, () => void>>;
|
|
157
158
|
handleScreenshotCapture?: (imageData: {
|