Skip to content

Commit 8a57aed

Browse files
committed
Add session timezone configuration
1 parent 0c5b812 commit 8a57aed

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export type TakeProfitMode = "risk_reward" | "percent" | "opposite_signal" | "no
77
export type EntryTrigger = "trend_state" | "ema_cross" | "pullback_reclaim" | "vwap_reclaim" | "supertrend_flip" | "breakout";
88
export type SpotExitMode = "trend_break" | "ema_cross" | "rsi_overbought" | "htf_bearish" | "combined";
99
export type VisualProfile = "clean" | "enhanced" | "advanced";
10+
export type SessionTimezone = "exchange" | "America/New_York" | "Europe/London" | "Europe/Istanbul" | "UTC";
1011

1112
export interface StrategyConfig {
1213
name: string;
@@ -73,6 +74,7 @@ export interface StrategyConfig {
7374
cooldownBars: number;
7475
sessionEnabled: boolean;
7576
session: string;
77+
sessionTimezone: SessionTimezone;
7678
alertsEnabled: boolean;
7779
webhookEnabled: boolean;
7880
showDashboard: boolean;

0 commit comments

Comments
 (0)