113 lines
4.1 KiB
MQL5
113 lines
4.1 KiB
MQL5
|
//+------------------------------------------------------------------+
|
||
|
//| Test.mq5 |
|
||
|
//| Thorsten Fischer Copyright 2019 |
|
||
|
//| https://www.tfsystem.de |
|
||
|
//+------------------------------------------------------------------+
|
||
|
#property copyright "Thorsten Fischer Copyright 2019"
|
||
|
#property link "https://www.tfsystem.de"
|
||
|
#property version "1.00"
|
||
|
#property strict
|
||
|
//#include <TF-Class\TFObject.mqh>
|
||
|
#include "Zwischen.mqh"
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Expert initialization function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
CZwischen test;
|
||
|
int OnInit()
|
||
|
{
|
||
|
//--- create timer
|
||
|
//EventSetTimer(60);
|
||
|
//---
|
||
|
return(test.OnInitEvent());
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Expert deinitialization function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnDeinit(const int reason)
|
||
|
{
|
||
|
//--- destroy timer
|
||
|
//EventKillTimer();
|
||
|
test.Destroy(reason);
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Expert tick function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTick()
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Timer function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTimer()
|
||
|
{
|
||
|
//---
|
||
|
//Print(__FUNCTION__);
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Trade function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTrade()
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| TradeTransaction function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTradeTransaction(const MqlTradeTransaction& trans,
|
||
|
const MqlTradeRequest& request,
|
||
|
const MqlTradeResult& result)
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| Tester function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
double OnTester()
|
||
|
{
|
||
|
//---
|
||
|
double ret=0.0;
|
||
|
//---
|
||
|
//---
|
||
|
return(ret);
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| TesterInit function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTesterInit()
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| TesterPass function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTesterPass()
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| TesterDeinit function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnTesterDeinit()
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| ChartEvent function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnChartEvent(const int id,
|
||
|
const long &lparam,
|
||
|
const double &dparam,
|
||
|
const string &sparam)
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|
||
|
//| BookEvent function |
|
||
|
//+------------------------------------------------------------------+
|
||
|
void OnBookEvent(const string &symbol)
|
||
|
{
|
||
|
//---
|
||
|
}
|
||
|
//+------------------------------------------------------------------+
|