QFSDK Workshop
Current location: Home > Workshops > QFSDK Workshop

    QFSDK Neural Network Toolkit for MT4 Financial Forecasting
    QFSDK Neural Network Toolkit for MT4 Financial Forecasting

    qfsdk.mqh The function usage is in the Readme.md. The qffc.mq4 file is just a demo example that imitates the program in the DemoFann.pdf. Of course, you can use your own data preprocessing methods. API build_net() bool build_net(int& nn_layer, int& feature_num, int& nn_output, const double &inputVector[], const double &outputVector[], const int &neuron_num[], const int & a...

    Quantum Price Level Calculation (mq4 version)
    Quantum Price Level Calculation (mq4 version)

    Quantum Price Level Calculation (mq4 version) This tutorial shows how to calculate the Quantum Price Level(qpl) under MetaTrader4 platform step by step. Objective : This program calculate the N(QPR) of 8 Financial Products. For Each Financial Product: 0) Cacluate All K values [K0 .. K20] using the following formula: K[eL] = pow((1.1924 + 33.2383*eL + 56.2169*eL*eL)/(1 + 43.6106 *eL),p3); 1) Read the Daily Time Series and e...

    Quantum Price Level Calculation (python version)
    Quantum Price Level Calculation (python version)

    Quantum Price Level Calculation (python version) Import packages import matplotlib.pyplot as plt import pandas as pd import numpy as np import math import datetime import torch from torch import nn from torch.autograd import Variable import matplotlib.pyplot as plt Load Data product = 'AUDUSD' fileName = 'TS_data/'+'AUDUSD1440.csv' ts = pd.read_csv(fileName...

到价提醒[关闭]