30 lines
1.2 KiB
MQL5
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()
|
|
{
|
|
}
|
|
//+------------------------------------------------------------------+
|