Support Board
Date/Time: Mon, 25 Nov 2024 13:32:50 +0000
Post From: [Programming Help] How to remove the
[2024-03-04 18:45:03] |
User462211 - Posts: 18 |
Thank you for your reply. To simplify, I want a chart with a timeframe of 1 second which displays the last 10 candles, even when there has been no trade during the last 10 seconds for example. The only solution I found was to create my own scid file. I write each trade in the TEST.scid file. So I want to display a TEST.scid file: * in real time. * TEST.scid created outside sierra: Intraday Data File Format: How to Feed Sierra Chart Data Through Intraday Data Files And when I do that, I have the following problem: * "Historical Download Skipped" which always remains visible. * the "Message log" window which generates connection error messages for this chart, which is not necessary. Here is the content of symbol-settings : <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<symbol-settings> <settings> <symbol>TEST</symbol> <supports-market-depth>false</supports-market-depth> <historical-daily-data-source>SC_EXCHANGE_DATA_SERVICE</historical-daily-data-source> <historical-intraday-data-source>SC_EXCHANGE_DATA_SERVICE</historical-intraday-data-source> <realtime-data-client>default_primary</realtime-data-client> <is-custom-symbol>true</is-custom-symbol> </settings> </symbol-settings> |