TF-altProjekte/Experts/Test TM/TFExpert.mqh
super.admin 84cd1a7ab0 convert
2025-05-30 16:31:33 +02:00

30 lines
1.2 KiB
MQL5

//+------------------------------------------------------------------+
//| TFExpert.mqh |
//| Thorsten Fischer Copyright 2019-2020 |
//| https://mql5.tfsystem.de |
//+------------------------------------------------------------------+
#property copyright "Thorsten Fischer Copyright 2019-2020"
#property link "https://mql5.tfsystem.de"
#property version "1.00"
#include <Expert\Expert.mqh>
class CTFExpert : public CExpert
{
private:
public:
CTFExpert();
~CTFExpert();
};
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
CTFExpert::CTFExpert()
{
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
CTFExpert::~CTFExpert()
{
}
//+------------------------------------------------------------------+