無料でロボットをダウンロードする方法を見る
Facebook上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
スクリプトを気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
スクリプト

Multi-Timeframe OHLCV CSV Exporter for Python pandas (ISO-8601) - MetaTrader 5のためのスクリプト

ビュー:
34
パブリッシュ済み:
MQL5フリーランス このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

A single-run Script that exports OHLCV data for multiple timeframes in one shot, formatted for direct ingestion by Python pandas using pd.read_csv(..., parse_dates=['datetime']).

It is designed to complement existing single-timeframe exporters by adding multi-timeframe batch output, ISO-8601 timestamps that pandas parses without custom converters, and an optional Spread column, all packaged into one drop-in script.

Features:
  1. Multiple timeframes per run. Supply a comma-separated list such as M15,H1,H4,D1 and the script will produce one CSV per timeframe.
  2. ISO-8601 timestamps in the 2025-04-15T13:30:00 format that pandas, polars, and Excel parse natively.
  3. Two range modes. Choose either a date range (FromDate / ToDate) or a trailing N bars window via dropdown input.
  4. Optional Spread and TickVolume columns, each toggled independently.
  5. UTF-8 or ANSI output, with UTF-8 set as the default and recommended choice for pandas.
  6. Symbol override. Defaults to the chart symbol, or specify any symbol present in Market Watch.
  7. Safe filenames. Special characters such as #, dot, and spaces are sanitised from the symbol name to avoid filesystem issues on Windows and macOS.

How to use:
  1. Drag the script onto any chart, set the inputs, click OK, and you are done.
  2. Output files appear in the MQL5/Files/ directory (the FILES sandbox).
  3. File naming pattern is Prefix_Symbol_TF.csv, for example OHLCV_EURUSD_H1.csv.
  4. In Python, load with: df = pd.read_csv("OHLCV_EURUSD_H1.csv", parse_dates=["datetime"]).

This script is intended for researchers and quant developers who need clean, ready-to-load OHLCV data without writing custom parsing glue code.

Multi-Timeframe OHLCV CSV Exporter for Python pandas (ISO-8601)

Institutional Nadaraya-Watson Kernel Regression Institutional Nadaraya-Watson Kernel Regression

従来の標準偏差に頼ることなく、統計的に有意な平均回帰帯を動的に予測するために、ナダラヤ・ワトソン回帰計算を利用した定量的機械学習エンベロープ。

Institutional Gaussian Signal Filter (Zero-Lag ALMA) Institutional Gaussian Signal Filter (Zero-Lag ALMA)

定量的ガウシアン・フィルターは、反応性を犠牲にすることなく市場ノイズを除去する高度なデジタル信号処理を適用することで、遅行小売移動平均に取って代わるように設計されています。

Fair Value Gap FVG MT5 Fair Value Gap FVG MT5

ICT/スマート・マネー手法の中核概念であるフェア・バリュー・ギャップ(価格の不均衡)をチャート上で検出し、描画します。価格がギャップを埋めるために戻るタイミングを追跡します。

Institutional Kelly-VAPS Risk Engine (Library) Institutional Kelly-VAPS Risk Engine (Library)

オブジェクト指向のMQL5ライブラリ(.mqh)で、静的なリテール・リスク・モデルを機関投資家向けのボラティリティ調整ポジションサイジング(VAPS)とケリー・クライテリオンの数学に置き換えます。