Alım-satım robotlarını ücretsiz olarak nasıl indirebileceğinizi izleyin
Bizi Facebook üzerinde bulun!
Fan sayfamıza katılın
Fan sayfamıza katılın
Komut dosyasını ilginç mi buldunuz?
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Öyleyse bir link gönderin -
başkalarının da faydalanmasını sağlayın
Komut dosyasını beğendiniz mi? MetaTrader 5 terminalinde deneyin
- Görüntülemeler:
- 6306
- Derecelendirme:
- Yayınlandı:
- 2023.10.21 21:33
- Güncellendi:
- 2023.11.16 23:39
-
Bu koda dayalı bir robota veya göstergeye mi ihtiyacınız var? Freelance üzerinden sipariş edin Freelance'e git
Use this simplest class to read CSV file with out any preparations and types casting declarations.
Find the shortest usage example below.
string Filename = "filename.csv"; CDKSimplestCSVReader CSVFile; // Create class object // Read file pass FILE_ANSI for ANSI files or another flag for another codepage. // Give values separator and flag of 1st line header in the file if (CSVFile.ReadCSV(Filename, FILE_ANSI, ";", true)) { PrintFormat("Successfully read %d lines from CSV file with %d columns: %s", CSVFile.RowCount(), // Return data lines count without header CSVFile.ColumnCount(), // Return columns count from 1st line of the file Filename); // Print all columns of the file from 1st line for (int i = 0; i < CSVFile.ColumnCount(); i++) { PrintFormat(" Column Index=#%d; Name=%s", i, CSVFile.GetColumn(i)); } // Print values from all rows for (int i = 0; i < CSVFile.RowCount(); i++) { PrintFormat("Row %d: Value by column name: CSVFile.GetValue(i, ""Time"")=%s", i, CSVFile.GetValue(i, "Time")); // Get value from i line by column name PrintFormat("Row %d: Value by column index: CSVFile.GetValue(i, 0)=%s", i, CSVFile.GetValue(i, 0)); // Get value from i line by column index } } else PrintFormat("Error reading CSV file or file has no any rows: %s", Filename);

The default CCI in MT5 doesn't have the shift parameter. This script implements the shift.

Smooth Algorithms fixed version plus Trade Algorithms plus full operational EA, plus two indicators . So you will get complete project where you be able to see example how to use and implement this libraries

Keltner Channel for traders or young developers by William210

Donchian Channel for traders or young developers by William210