267 satır
21 KiB
MQL5
267 satır
21 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| Study.mq5 |
|
|
//| Copyright DNG® |
|
|
//| https://www.mql5.com/ru/users/dng |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "Copyright DNG®"
|
|
#property link "https://www.mql5.com/ru/users/dng"
|
|
#property version "1.00"
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
#define Study
|
|
#include "Trajectory.mqh"
|
|
//+------------------------------------------------------------------+
|
|
//| Input parameters |
|
|
//+------------------------------------------------------------------+
|
|
input int Iterations = 1e4;
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
STrajectory Buffer[];
|
|
CNet Agent;
|
|
CNet Worker;
|
|
//---
|
|
float dError;
|
|
datetime dtStudied;
|
|
//---
|
|
CBufferFloat State;
|
|
CBufferFloat *Result;
|
|
vector<float> Actions;
|
|
//+------------------------------------------------------------------+
|
|
//| Expert initialization function |
|
|
//+------------------------------------------------------------------+
|
|
int OnInit()
|
|
{
|
|
//---
|
|
ResetLastError();
|
|
if(!LoadTotalBase())
|
|
{
|
|
PrintFormat("Error of load study data: %d", GetLastError());
|
|
return INIT_FAILED;
|
|
}
|
|
//--- load models
|
|
float temp;
|
|
if(!Worker.Load(FileName + "Work.nnw", temp, temp, temp, dtStudied, true))
|
|
{
|
|
PrintFormat("Error of load worker model: %d", GetLastError());
|
|
return INIT_FAILED;
|
|
}
|
|
if(!Agent.Load(FileName + "Act.nnw", temp, temp, temp, dtStudied, true))
|
|
{
|
|
CArrayObj *agent = new CArrayObj();
|
|
if(!CreateDescriptions(agent))
|
|
{
|
|
delete agent;
|
|
return INIT_FAILED;
|
|
}
|
|
if(!Agent.Create(agent))
|
|
{
|
|
delete agent;
|
|
return INIT_FAILED;
|
|
}
|
|
delete agent;
|
|
//---
|
|
}
|
|
//---
|
|
Worker.SetOpenCL(Agent.GetOpenCL());
|
|
Worker.TrainMode(false);
|
|
//---
|
|
Worker.getResults(Result);
|
|
if(Result.Total() != NActions)
|
|
{
|
|
PrintFormat("The scope of the worker does not match the actions count (%d <> %d)", NActions, Result.Total());
|
|
return INIT_FAILED;
|
|
}
|
|
//---
|
|
Worker.GetLayerOutput(0, Result);
|
|
if(Result.Total() != WorkerInput)
|
|
{
|
|
PrintFormat("Input size of Worker model doesn't match skills count (%d <> %d)", Result.Total(), WorkerInput);
|
|
return INIT_FAILED;
|
|
}
|
|
//---
|
|
Agent.getResults(Result);
|
|
if(Result.Total() != WorkerInput)
|
|
{
|
|
PrintFormat("The scope of the Agent does not match the skills count (%d <> %d)", WorkerInput, Result.Total());
|
|
return INIT_FAILED;
|
|
}
|
|
//---
|
|
if(!EventChartCustom(ChartID(), 1, 0, 0, "Init"))
|
|
{
|
|
PrintFormat("Error of create study event: %d", GetLastError());
|
|
return INIT_FAILED;
|
|
}
|
|
//---
|
|
return(INIT_SUCCEEDED);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Expert deinitialization function |
|
|
//+------------------------------------------------------------------+
|
|
void OnDeinit(const int reason)
|
|
{
|
|
//---
|
|
Agent.Save(FileName + "Act.nnw", 0, 0, 0, TimeCurrent(), true);
|
|
delete Result;
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| ChartEvent function |
|
|
//+------------------------------------------------------------------+
|
|
void OnChartEvent(const int id,
|
|
const long &lparam,
|
|
const double &dparam,
|
|
const string &sparam)
|
|
{
|
|
//---
|
|
if(id == 1001)
|
|
Train();
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Train function |
|
|
//+------------------------------------------------------------------+
|
|
void Train(void)
|
|
{
|
|
int total_tr = ArraySize(Buffer);
|
|
uint ticks = GetTickCount();
|
|
float err=0;
|
|
int err_count=0;
|
|
//---
|
|
bool StopFlag = false;
|
|
for(int iter = 0; (iter < Iterations && !IsStopped() && !StopFlag); iter ++)
|
|
{
|
|
int tr = (int)((MathRand() / 32767.0) * (total_tr - 1));
|
|
int i = (int)((MathRand() * MathRand() / MathPow(32767, 2)) * MathMax(Buffer[tr].Total - 2 * HistoryBars-ValueBars,MathMin(Buffer[tr].Total,20+ValueBars)));
|
|
if(i < 0)
|
|
{
|
|
iter--;
|
|
continue;
|
|
}
|
|
Actions = vector<float>::Zeros(NActions);
|
|
for(int state = i; state < MathMin(Buffer[tr].Total - 2 - ValueBars,i + HistoryBars * 3); state++)
|
|
{
|
|
//--- History data
|
|
State.AssignArray(Buffer[tr].States[state].state);
|
|
//--- Account description
|
|
float PrevBalance = (state == 0 ? Buffer[tr].States[state].account[0] : Buffer[tr].States[state - 1].account[0]);
|
|
float PrevEquity = (state == 0 ? Buffer[tr].States[state].account[1] : Buffer[tr].States[state - 1].account[1]);
|
|
State.Add((Buffer[tr].States[state].account[0] - PrevBalance) / PrevBalance);
|
|
State.Add(Buffer[tr].States[state].account[1] / PrevBalance);
|
|
State.Add((Buffer[tr].States[state].account[1] - PrevEquity) / PrevEquity);
|
|
State.Add(Buffer[tr].States[state].account[2]);
|
|
State.Add(Buffer[tr].States[state].account[3]);
|
|
State.Add(Buffer[tr].States[state].account[4] / PrevBalance);
|
|
State.Add(Buffer[tr].States[state].account[5] / PrevBalance);
|
|
State.Add(Buffer[tr].States[state].account[6] / PrevBalance);
|
|
//--- Time label
|
|
double x = (double)Buffer[tr].States[state].account[7] / (double)(D'2024.01.01' - D'2023.01.01');
|
|
State.Add((float)MathSin(2.0 * M_PI * x));
|
|
x = (double)Buffer[tr].States[state].account[7] / (double)PeriodSeconds(PERIOD_MN1);
|
|
State.Add((float)MathCos(2.0 * M_PI * x));
|
|
x = (double)Buffer[tr].States[state].account[7] / (double)PeriodSeconds(PERIOD_W1);
|
|
State.Add((float)MathSin(2.0 * M_PI * x));
|
|
x = (double)Buffer[tr].States[state].account[7] / (double)PeriodSeconds(PERIOD_D1);
|
|
State.Add((float)MathSin(2.0 * M_PI * x));
|
|
//--- Prev action
|
|
State.AddArray(Actions);
|
|
//--- Return-To-Go
|
|
vector<float> rtg;
|
|
rtg.Assign(Buffer[tr].States[state+1].rewards);
|
|
Actions.Assign(Buffer[tr].States[state+ValueBars].rewards);
|
|
rtg=rtg-Actions*MathPow(DiscFactor,ValueBars);
|
|
State.AddArray(rtg);
|
|
//--- Policy Feed Forward
|
|
if(!Agent.feedForward(GetPointer(State), 1, false, (CBufferFloat *)NULL) ||
|
|
!Worker.feedForward((CNet *)GetPointer(Agent),-1,(CBufferFloat *)NULL))
|
|
{
|
|
PrintFormat("%s -> %d", __FUNCTION__, __LINE__);
|
|
StopFlag = true;
|
|
break;
|
|
}
|
|
//--- Policy study
|
|
Actions.Assign(Buffer[tr].States[state].action);
|
|
Worker.getResults(rtg);
|
|
if(err_count==0)
|
|
err=rtg.Loss(Actions,LOSS_MSE);
|
|
else
|
|
err=(err*err_count + rtg.Loss(Actions,LOSS_MSE))/(err_count+1);
|
|
if(err_count<1000)
|
|
err_count++;
|
|
Result.AssignArray(CAGrad(Actions - rtg) + rtg);
|
|
if(!Worker.backProp(Result,NULL,NULL) ||
|
|
!Agent.backPropGradient((CBufferFloat *)NULL, (CBufferFloat *)NULL))
|
|
{
|
|
PrintFormat("%s -> %d", __FUNCTION__, __LINE__);
|
|
StopFlag = true;
|
|
break;
|
|
}
|
|
//---
|
|
if(GetTickCount() - ticks > 500)
|
|
{
|
|
string str = StringFormat("%-15s %5.2f%% -> Error %15.8f\n", "Agent", iter * 100.0 / (double)(Iterations), err);
|
|
Comment(str);
|
|
ticks = GetTickCount();
|
|
}
|
|
}
|
|
}
|
|
Comment("");
|
|
//---
|
|
PrintFormat("%s -> %d -> %-15s %10.7f", __FUNCTION__, __LINE__, "Agent", err);
|
|
ExpertRemove();
|
|
//---
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
vector<float> CAGrad(vector<float> &grad)
|
|
{
|
|
matrix<float> GG = grad.Outer(grad);
|
|
GG.ReplaceNan(0);
|
|
if(MathAbs(GG).Sum() == 0)
|
|
return grad;
|
|
float scale = MathSqrt(GG.Diag() + 1.0e-4f).Mean();
|
|
GG = GG / MathPow(scale,2);
|
|
vector<float> Gg = GG.Mean(1);
|
|
float gg = Gg.Mean();
|
|
vector<float> w = vector<float>::Zeros(grad.Size());
|
|
float c = MathSqrt(gg + 1.0e-4f) * fCAGrad_C;
|
|
vector<float> w_best = w;
|
|
float obj_best = FLT_MAX;
|
|
vector<float> moment = vector<float>::Zeros(w.Size());
|
|
for(int i = 0; i < iCAGrad_Iters; i++)
|
|
{
|
|
vector<float> ww;
|
|
w.Activation(ww,AF_SOFTMAX);
|
|
float obj = ww.Dot(Gg) + c * MathSqrt(ww.MatMul(GG).Dot(ww) + 1.0e-4f);
|
|
if(MathAbs(obj) < obj_best)
|
|
{
|
|
obj_best = MathAbs(obj);
|
|
w_best = w;
|
|
}
|
|
if(i < (iCAGrad_Iters - 1))
|
|
{
|
|
float loss = -obj;
|
|
vector<float> derev = Gg + GG.MatMul(ww) * c / (MathSqrt(ww.MatMul(GG).Dot(ww) + 1.0e-4f) * 2) + ww.MatMul(GG) * c / (MathSqrt(ww.MatMul(GG).Dot(ww) + 1.0e-4f) * 2);
|
|
vector<float> delta = derev * loss;
|
|
ulong size = delta.Size();
|
|
matrix<float> ident = matrix<float>::Identity(size, size);
|
|
vector<float> ones = vector<float>::Ones(size);
|
|
matrix<float> sm_der = ones.Outer(ww);
|
|
sm_der = sm_der.Transpose() * (ident - sm_der);
|
|
delta = sm_der.MatMul(delta);
|
|
if(delta.Ptp() != 0)
|
|
delta = delta / delta.Ptp();
|
|
moment = delta * 0.8f + moment * 0.5f;
|
|
w += moment;
|
|
if(w.Ptp() != 0)
|
|
w = w / w.Ptp();
|
|
}
|
|
}
|
|
w_best.Activation(w,AF_SOFTMAX);
|
|
float gw_norm = MathSqrt(w.MatMul(GG).Dot(w) + 1.0e-4f);
|
|
float lmbda = c / (gw_norm + 1.0e-4f);
|
|
vector<float> result = ((w * lmbda + 1.0f / (float)grad.Size()) * grad) / (1 + MathPow(fCAGrad_C,2));
|
|
//---
|
|
return result;
|
|
}
|
|
//+------------------------------------------------------------------+
|