Skip to content

KeisukeIwabuchi/ShadowRecord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

ShadowRecord

Create and manage virtual trade records.

Install

  1. Download ShadowRecord.mqh
  2. Save the file to MQL4/Include/mql4_modules/ShadowRecord/ShadowRecord.mqh

How to use

#include <mql4_modules/ShadowRecord/ShadowRecord.mqh>

ShadowRecord *RS;

int OnInit()
{
   SR = new ShadowRecord();

   return(INIT_SUCCEEDED);
}

void OnDeinit(const int reason)
{
  delete(SR);
}

void OnTick()
{
  SR.Tick();
}

About

Create and manage virtual trade records.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages