Skip to content

Commit

Permalink
Merge pull request #39 from FortesenseLabs/develop
Browse files Browse the repository at this point in the history
Renamed and separated MQL4 and MQL5 server code
  • Loading branch information
fortesense authored Oct 26, 2023
2 parents d4f00e5 + 8d62d2c commit a2029b2
Show file tree
Hide file tree
Showing 38 changed files with 1,211 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ name: Compile
on:
pull_request:
paths:
- '**.mq?'
- '.github/workflows/compile.yml'
- "**.mq?"
- ".github/workflows/compile.yml"
push:
paths:
- '**.mq?'
- '.github/workflows/compile.yml'
- "**.mq?"
- ".github/workflows/compile.yml"

jobs:
Compile:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
submodules: "recursive"
- name: Compiles (MQL4)
uses: fx31337/mql-compile-action@master
with:
Expand All @@ -26,5 +26,5 @@ jobs:
- name: Compiles (MQL5)
uses: fx31337/mql-compile-action@master
with:
path: MT5.mq5
path: server/MQL5/wisefinance-socket-server.mq5
verbose: true
1 change: 0 additions & 1 deletion .github/workflows/metatrader5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
26 changes: 25 additions & 1 deletion INFO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
# INFO

## Links
strategy: > N pips = true else false (binary classification) |
(use windowing, where the N pips might not be gotten in 1 candles but over multiple candles)
N could be 20

### Data Processing

- https://www.linkedin.com/pulse/data-windowing-technique-used-time-series-forecasting-alejandro/
- https://albertum.medium.com/preprocessing-time-series-to-windowed-datasets-a464799b1df7

### Regression

- https://github.com/rahulworld/bitcoin-prediction/
- https://github.com/Ali619/Bitcoin-Price-Prediction-LSTM
- https://github.com/chibui191/bitcoin_volatility_forecasting
- https://github.com/upathare1/Bitcoin-Price-Prediction
- https://github.com/DevonFulcher/CryptoPricePredictor
- https://github.com/shivamnegi92/LSTM-RNN-over-Bitcoin-Historical-Data

### Classification

- https://github.com/bukosabino/btctrading
- https://github.com/jerryfane/bitcoin-price-prediction-with-2d-cnn
- https://github.com/Leci37/stocks-prediction-Machine-learning-RealTime-TensorFlow (stock)

## Other Resources

https://git.mtapi.be/explore

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions scripts/wisefinanceMT-mql.py → clients/wisefinanceMT-mql.py
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ def close_all_positions(self):
# Account information
accountInfo = api.accountInfo()
print(accountInfo)
print(api.balance())
# print(api.balance())

# History from Date to Date
# symbol = "Step Index"
Expand Down Expand Up @@ -833,7 +833,7 @@ def close_all_positions(self):
# Limit Orders
# symbol, volume, stoploss, takeprofit, price, deviation
# api.buy_limit("Step Index", 0.1, 8300.0, 8500.0, 8363.2, 5)
# api.sellLimit("Step Index", 0.1, 1.20, 1.17, 1.19, 5)
# api.sell_limit("Step Index", 0.1, 1.20, 1.17, 1.19, 5)

# Stop Orders
# symbol, volume, stoploss, takeprofit, price, deviation
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit a2029b2

Please sign in to comment.