37 lines
2.1 KiB
MQL5
37 lines
2.1 KiB
MQL5
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| AF_Attribution.mqh |
|
||
|
|
//| Project : Algo Forge (refactor total) |
|
||
|
|
//| Version : 0.1.0 |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
//| ATRIBUSI SUMBER (WAJIB - jangan dihapus): |
|
||
|
|
//| |
|
||
|
|
//| Proyek ini adalah REFAKTOR TOTAL dengan arsitektur baru |
|
||
|
|
//| (3 engine + ML hibrida), terinspirasi dari indikator: |
|
||
|
|
//| |
|
||
|
|
//| SniperGold SMC Pro+ |
|
||
|
|
//| https://www.mql5.com/en/code/75466 |
|
||
|
|
//| Copyright (c) Waseem Shahrukh |
|
||
|
|
//| |
|
||
|
|
//| Proyek ini BUKAN salinan langsung dari kode sumber di atas; |
|
||
|
|
//| seluruh implementasi ditulis ulang dengan arsitektur 3-engine |
|
||
|
|
//| dan ML hibrida. Namun sesuai etika dan lisensi, atribusi |
|
||
|
|
//| sumber WAJIB dicantumkan di header setiap file, README, dan |
|
||
|
|
//| publikasi "Algo Forge". |
|
||
|
|
//| |
|
||
|
|
//| BASELINE (proyek lama - referensi, jangan dihapus): |
|
||
|
|
//| SniperGold_SMC_ProPlus_v4_4.mq5 ML 2-head terkalibrasi |
|
||
|
|
//| AUC test: LONG 0.6270 / SHORT 0.6207 |
|
||
|
|
//| SniperGold_SMC_ProPlus_v4_5.mq5 MTF struktur + cache index |
|
||
|
|
//+------------------------------------------------------------------+
|
||
|
|
#ifndef AF_ATTRIBUTION_MQH
|
||
|
|
#define AF_ATTRIBUTION_MQH
|
||
|
|
|
||
|
|
#define AF_PROJECT_NAME "Algo Forge"
|
||
|
|
#define AF_PROJECT_VERSION "0.10"
|
||
|
|
#define AF_SOURCE_TITLE "SniperGold SMC Pro+"
|
||
|
|
#define AF_SOURCE_URL "https://www.mql5.com/en/code/75466"
|
||
|
|
#define AF_SOURCE_AUTHOR "Waseem Shahrukh"
|
||
|
|
#define AF_BASELINE_V44_AUC_L "0.6270"
|
||
|
|
#define AF_BASELINE_V44_AUC_S "0.6207"
|
||
|
|
|
||
|
|
#endif // AF_ATTRIBUTION_MQH
|