Original (English)Zorro's standard time zone is UTC (Greenwich mean time), which is also the time zone of historical data, logs, and charts. Time and date functions and variables are normally also based on UTC time. Alternatively, local time zones can be used either on the bar or on the asset level. For handling or converting time zones, the following variables are available: BarZoneTime zone of bars (default: UTC). Affects bar generation: daily bars will start and end at BarZone midnight plus BarOffset. For this, set BarZone before the first asset call. BarZone is also used by several date/time functions that use local time. For using specific asset-dependent time zones with intraday bars, see AssetFrameZone and AssetMarketZone. HistoryZoneTime zone of the historical data files, for converting them to UTC. This variable is rarely needed since timestamps in historical data files should be already in UTC. If not, set HistoryZone to the time zone in the data. The time stamps in historical data files and dataset files are then automatically converted to UTC on dataLoad or dataParse. BrokerZoneTime zone of the broker plugin. This variable is rarely needed since broker plugins normally return timestamps in UTC. Otherwise the broker plugin is supposed to set BrokerZone with the GET_BROKERZONE command. The broker API time stamps are then converted to UTC on import. LogZoneTime zone of the log and chart. If not set, all dates and times in the log and chart are in UTC. AssetMarketZoneTime zone of the current asset; initially read from the Market field of the asset list, otherwise copied from BarZone or set by script. AssetFrameZoneTime zone of the current asset for daily trading; used to set AssetFrame to a daily TimeFrame that begins at FrameOffset in local time. Type:int, UTC for UTC time (default), EST for New York, WET for London, CET for Frankfurt, AEST for Sydney, JST for Tokyo, or any number from -23..+23 that gives the time zone offset in hours to UTC. Daylight saving time is used, except for UTC and for time zones at or beyond JST. AssetFrameAsset specific time frame, automatically set by AssetFrameZone. 0 when the current asset had no price quotes in the current bar or when its market is closed; negative number of skipped bars when the market opens; 1 otherwise. Normally used to set TimeFrame = AssetFrame for skipping bars outside market hours, or for trading on different time zones (see example). Type:int, read/only Remarks:
Examples:// trade daily at 15:30 New York time BarPeriod = 1440; BarOffset = 15*60+30; BarZone = EST; ... // trade two assets on different time zones BarPeriod = 60; FrameOffset = 10; // trade both assets at 10:00 am local time while(asset(loop("EUR/USD","USD/JPY"))) { if(strstr(Asset,"EUR")) AssetFrameZone = WET; else if(strstr(Asset,"JPY")) AssetFrameZone = JST; TimeFrame = AssetFrame; // use a daily time frame changing at 10:00 local time ... } See also:TimeFrame, StartMarket, BarMode, Time/Date functions, asset► latest version online |
Übersetzung (Deutsch)Zorros Standard-Zeitzone ist UTC (Greenwich Mean Time), die auch die Zeitzone für historische Daten, Logs und Diagramme ist. Zeit- und Datumsfunktionen und Variablen basieren normalerweise ebenfalls auf UTC-Zeit. Alternativ können lokale Zeitzonen entweder auf der Balken- oder auf der Asset-Ebene verwendet werden. Für die Handhabung oder Umrechnung von Zeitzonen stehen die folgenden Variablen zur Verfügung: BarZoneZeitzone der Balken (Standard: UTC). Beeinflusst die Balkenerstellung: Tägliche Balken beginnen und enden um Mitternacht der BarZone plus BarOffset. Dafür setzen Sie BarZone vor dem ersten asset Aufruf. BarZone wird auch von mehreren Datum/Zeit-Funktionen verwendet, die lokale Zeit nutzen. Für die Verwendung spezifischer, assetabhängiger Zeitzonen bei Intraday-Balken siehe AssetFrameZone und AssetMarketZone. HistoryZoneZeitzone der historischen Datendateien, zur Umrechnung in UTC. Diese Variable wird selten benötigt, da Zeitstempel in historischen Datendateien bereits in UTC sein sollten. Wenn nicht, setzen Sie HistoryZone auf die Zeitzone der Daten. Die Zeitstempel in historischen Datendateien und Dataset-Dateien werden dann automatisch bei dataLoad oder dataParse in UTC umgerechnet. BrokerZoneZeitzone des Broker-Plugins. Diese Variable wird selten benötigt, da Broker-Plugins normalerweise Zeitstempel in UTC zurückgeben. Andernfalls soll das Broker-Plugin BrokerZone mit dem GET_BROKERZONE Befehl setzen. Die Broker-API-Zeitstempel werden dann beim Import in UTC umgerechnet. LogZoneZeitzone des Logs und des Diagramms. Wenn nicht gesetzt, sind alle Daten und Zeiten im Log und Diagramm in UTC. AssetMarketZoneZeitzone des aktuellen Assets; zunächst aus dem Market Feld der Asset-Liste gelesen, andernfalls von BarZone kopiert oder durch das Skript gesetzt. AssetFrameZoneZeitzone des aktuellen Assets für den täglichen Handel; verwendet, um AssetFrame auf ein tägliches TimeFrame zu setzen, das um FrameOffset in lokaler Zeit beginnt. Typ:int, UTC für UTC-Zeit (Standard), EST für New York, WET für London, CET für Frankfurt, AEST für Sydney, JST für Tokio oder jede Zahl von -23..+23, die den Zeitzonenoffset in Stunden zu UTC angibt. Die Sommerzeit wird verwendet, außer für UTC und für Zeitzonen an oder über JST. AssetFrameAsset-spezifischer Zeitrahmen, automatisch gesetzt durch AssetFrameZone. 0, wenn das aktuelle Asset keine Preisangebote im aktuellen Balken hatte oder wenn sein Markt geschlossen ist; negative Anzahl übersprungener Balken beim Öffnen des Marktes; 1 ansonsten. Normalerweise verwendet, um TimeFrame = AssetFrame zu setzen, um Balken außerhalb der Marktzeiten zu überspringen oder für den Handel in verschiedenen Zeitzonen (siehe Beispiel). Typ:int, nur lesbar Anmerkungen:
Examples:// trade daily at 15:30 New York time BarPeriod = 1440; BarOffset = 15*60+30; BarZone = EST; ... // trade two assets on different time zones BarPeriod = 60; FrameOffset = 10; // trade both assets at 10:00 am local time while(asset(loop("EUR/USD","USD/JPY"))) { if(strstr(Asset,"EUR")) AssetFrameZone = WET; else if(strstr(Asset,"JPY")) AssetFrameZone = JST; TimeFrame = AssetFrame; // use a daily time frame changing at 10:00 local time ... } See also:TimeFrame, StartMarket, BarMode, Time/Date functions, asset► latest version online |
► Neueste Version online