• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion XPERT! updated

Can you explain why you are reading the history file?
dear Elio
every expert use kernel32.dll for file reading is history trader
in this part expert use this functions:
#import "kernel32.dll"
int CreateFileW(string Filename,int AccessMode,int ShareMode,int PassAsZero,int CreationMode,int FlagsAndAttributes,int AlsoPassAsZero);
int GetFileSize(int FileHandle,int PassAsZero);
int SetFilePointer(int FileHandle,int Distance,int &PassAsZero[],int FromPosition);
int ReadFile(int FileHandle,uchar &BufferPtr[],int BufferLength,int &BytesRead[],int PassAsZero);
int CloseHandle(int FileHandle);
#import
and then in this function:
void ReadFileHst(string FileName)
{
int j=0;;
string strFileContents;
int Handle;
int LogFileSize;
int movehigh[1]= {0};
uchar buffer[];
int nNumberOfBytesToRead;
int read[1]= {0};
int i;
double mm;
//----- -----
strFileContents="";
Handle=CreateFileW(FileName,(int)0x80000000,3,0,3,0,0);
.
.
.

read whole history and trade depend on history.

Understand what happen in this expert?

this is fake expert. use our Experience instead of wasting your time.

Please Join Us for profit.
Our Signal: more than 200% profit with real statement
 
Back
Top