Initial commit: MQL5 Scripts Collection (MetaTrader 5)

This commit is contained in:
GeneralTradingSarl
2025-06-24 00:33:04 +01:00
commit 60a549d89c
1959 changed files with 31907 additions and 0 deletions
@@ -0,0 +1,21 @@
# 🚀 Unlock the Power of Trading!
Welcome to this open-source trading project. Here you will find powerful tools to enhance your trading journey. If you find this project useful, please consider starring ⭐, sharing, or donating to support further development!
---
**Support the project:**
- Star this repository on GitHub
- Share it with your trading friends
- [Donate here](https://www.paypal.com/donate/?hosted_button_id=YOUR_BUTTON_ID) to help us grow!
---
![Screenshot](library.png)
![Screenshot](miniticks.png)
![Screenshot](script.png)
## Source Files
- `tickcompressor.mq5`
---
> Made with ❤️ for the trading community.
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

@@ -0,0 +1,51 @@
//+------------------------------------------------------------------+
//| TickCompressor.mq5 |
//| Copyright (c) 2020, Marketeer |
//| https://www.mql5.com/en/users/marketeer |
//| https://www.mql5.com/en/code/30791/ |
//+------------------------------------------------------------------+
#include <TickCompressor.mqh>
#define PRT(A) Print(#A, " ", (A))
void OnStart()
{
PRT(sizeof(MqlTick));
PRT(sizeof(MqlTickBidAsk));
PRT(sizeof(MqlTickBidAskLastVolume));
// 1-element arrays are used for pretty-printing via ArrayPrint
MqlTick tick[1];
SymbolInfoTick(_Symbol, tick[0]);
ArrayPrint(tick);
if(SymbolInfoInteger(_Symbol, SYMBOL_TRADE_CALC_MODE) < SYMBOL_CALC_MODE_EXCH_STOCKS)
{
MqlTickBidAsk tba[1];
TickCompressor::compress(tick, tba); // array notation
// other way for a single tick can be used as well
// tba[0] = MqlTickBidAsk::compress(tick[0]);
ArrayPrint(tba);
MqlTick result[1];
result[0] = MqlTickBidAsk::decompress(tba[0]); // single tick notation
// other way for arrays can be used as well
// TickCompressor::decompress(tba, result);
ArrayPrint(result);
}
else
{
MqlTickBidAskLastVolume tbalv[1];
// TickCompressor::compress(tick, tbalv);
tbalv[0] = MqlTickBidAskLastVolume::compress(tick[0]);
ArrayPrint(tbalv);
MqlTick result[1];
TickCompressor::decompress(tbalv, result);
// result[0] = MqlTickBidAskLastVolume::decompress(tbalv[0]);
ArrayPrint(result);
}
}