Market RTD Application Settings
Market RTD loads application settings from the market.rtd.dll.config file located in the local application folder:
C:\Users\<Your user name>\AppData\Gartle\Market.RTD\market.rtd.dll.config
To open the file, navigate through the Start Menu to All Programs, then select Market RTD, and click on Configuration File.
Configuration File Example
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="StorageType" value="SQLite"/> <add key="DataCacheDirectory" value=""/> <add key="TimeZone" value="Eastern Standard Time"/> </appSettings> </configuration>
Configuration Parameters
- StorageType
- This string value defines where to store downloaded data: either an SQLite database or the file system.
Possible values are:
-SQLite
(default)
-Folder
The files are located in theDataCacheFolder
. - DataCacheDirectory
- This string value allows you to change the cache directory for downloaded data.
The default value is%USERPROFILE%\AppData\Local\market.rtd\DataCache
. - TimeZone
- This string value adjusts the PC time used in the
rtd_LastUpdate
,rtd_LastUpdateDate
, andrtd_LastUpdateTime
fields.
The default value isEastern Standard Time
.
For a list of available time zones, visit https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/default-time-zones?view=windows-11.