Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Export Trade List On Csv //
- // Sul file .csv carico: Date/Time/Open/High/Low /Equity/Volume Per una questione di caricamento su tradestatio... . Apro il grafico, clicco su una candela 2 volte e nelle impostazioni style clicco su line on close.
- Vars:
- mp(0),
- formattedDate(""),
- formattedTime(""),
- dateTimeString("");
- mp = marketposition;
- if mp[0] <> mp[1] and mp[0] <> 0 then begin
- // Formatta la data nel formato "MM-dd-yyyy"
- formattedDate = FormatDate("dd-MM-yyyy", ElDateToDateTime(Date));
- // Formatta l'ora nel formato "00:00:00"
- formattedTime = BarDateTime.Format("%H:%M:%S");
- // Combina data e ora nel formato richiesto
- dateTimeString = formattedDate + "," + formattedTime;
- // Stampa nel file CSV
- Print(File("C:\Users\Utente\Desktop\Equity Control\Tradestation\Swing Trend Trailing\Exports\Export_Equity.csv"), dateTimeString, ",", open, ",", high, ",", low, ",", NumToStr(NetProfit, 2) , Volume, ",");
- end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement