funhi-chart 1.3.6 → 1.3.7

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.
@@ -60,6 +60,7 @@ export declare class CandleManager {
60
60
  getLastCandleTime(): number;
61
61
  /**
62
62
  * Loads candles from storage
63
+ * Merges with existing candles to preserve real-time data
63
64
  */
64
65
  loadCandles(candles: CandleData[]): void;
65
66
  /**
@@ -21,6 +21,7 @@ export declare class FunhiChartController {
21
21
  initialize(): Promise<void>;
22
22
  /**
23
23
  * Loads candles for a specific timeframe
24
+ * Safeguard: Only loads if we don't have candles, or merges with existing ones
24
25
  */
25
26
  loadTimeframeData(timeframeSeconds: number): Promise<void>;
26
27
  /**