Giter Site home page Giter Site logo

data_server's Introduction

data_server

data_server is WebDAV service for Metatrader 4.

Who uses it

How to use

  1. Put z4_DATA_MODEL_to_CSV_1.0.mq4 and z4_Symbol_Properties_to_MySQL_1.0.mq4 into some chart. Symbol properties require database table (see below).
  2. Configure and start WebDAV server.
  3. Voila, your MT4 data is available through internet.

Symbols table (for storing current sym properties)

CREATE TABLE IF NOT EXISTS symbols (id bigint(20) NOT NULL AUTO_INCREMENT,
symbol varchar(20) NOT NULL,
description varchar(120) DEFAULT NULL,
spread decimal(10,5) DEFAULT NULL,
tick_value decimal(10,5) DEFAULT NULL,
tick_size decimal(8,5) DEFAULT NULL,
margin_initial decimal(10,2) DEFAULT NULL,
digits decimal(8,5) DEFAULT NULL,
profit_calc int(2) DEFAULT NULL,
profit_currency varchar(10) DEFAULT NULL,
price_at_calc_time decimal(20,5) DEFAULT NULL,
commission decimal(15,5) DEFAULT NULL,
broker varchar(40) NOT NULL,
points decimal(8,5) DEFAULT NULL,
PRIMARY KEY (id), UNIQUE KEY symbol (symbol) )
ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;

ALTER TABLE collector_symbols ADD UNIQUE (symbol, broker);

data_server's People

Contributors

talaikis avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.