General
- Platforms
- TradeStation
- Linking bank account is required.
- Sierra Chart – High Performance Trading Platform
- MetaTrader4
- the most popular Forex trading platform
- MetaTrader5
- A powerful platform for Forex and Exchange markets
- TradeStation
- Youtube Videos
Meta Trader
- Export Stocks data to Excel
- Open demo account at hotforex.com
- Download hotforex’s Meta Trader 5 and install.
- Login to Meta Trader
- Add the required symbol
- How to export data from Metatrader 5
- Export to HTML
- Copy and paste HTML content to Excel.
- Meta Trader
- Meta Trader programming for beginners (Videos)
- How to export data from Metatrader 5
- Note:
- You can export to CSV or HTML.
- To reflect the data in Excel, do the following steps:
- Export to HTML
- Open in Browser
- Copy and paste all to excel.
- Note:
- Where to open account MT5 Demo account
Meta Trader 4 vs Meta Trader 5
MT4 vs MT5 Feature Comparison
Index | MT4 Feature | MT5 Feature | Description | MT4 Rating (0-100) | MT5 Rating (0-100) | Feature Importance (1-10) |
---|---|---|---|---|---|---|
1 | Yes | Yes | Trading Instruments | 75 | 90 | 5 |
2 | No | Yes | Cryptocurrency Trading | – | 90 | 9 |
3 | Yes | Yes | Charting Tools | 80 | 90 | 7 |
4 | No | Yes | Economic Calendar | – | 90 | 8 |
5 | Yes | Yes | Timeframes | 70 | 85 | 5 |
6 | No | Yes | Multiple Order Types | – | 85 | 6 |
7 | Yes | Yes | Technical Indicators | 75 | 85 | 5 |
8 | No | Yes | Depth of Market (DOM) | – | 85 | 6 |
9 | Yes | Yes | Expert Advisors (EAs) | 85 | 90 | 5 |
10 | No | Yes | Strategy Tester | – | 90 | 6 |
11 | Yes | Yes | Hedging | 80 | 90 | 7 |
12 | No | Yes | Multilingual Support | – | 80 | 6 |
13 | Yes | Yes | Mobile Trading | 75 | 85 | 5 |
14 | No | Yes | One-Click Trading | – | 85 | 6 |
15 | Yes | Yes | Market Depth | 60 | 85 | 5 |
16 | No | Yes | Copy Trading | – | 90 | 7 |
17 | Yes | Yes | User-Friendly Interface | 70 | 85 | 5 |
18 | No | Yes | Built-in Economic Calendar | – | 90 | 6 |
19 | Yes | Yes | Custom Indicators | 75 | 85 | 5 |
20 | No | Yes | Extended Timeframes | – | 85 | 6 |
21 | Yes | Yes | Automated Trading | 85 | 90 | 5 |
22 | Yes | Yes | Scalping | 80 | 90 | 5 |
23 | No | Yes | News Integration | – | 90 | 6 |
24 | Yes | Yes | Market Orders | 75 | 85 | 5 |
25 | No | Yes | Pending Orders | – | 85 | 6 |
26 | Yes | Yes | Price Alerts | 70 | 85 | 5 |
27 | No | Yes | VPS Hosting | – | 90 | 6 |
28 | Yes | Yes | Risk Management | 80 | 90 | 5 |
29 | No | Yes | Technical Analysis Tools | – | 90 | 5 |
30 | Yes | Yes | Fundamental Analysis Tools | 70 | 85 | 5 |
31 | No | Yes | Web Trading Platform | – | 90 | 6 |
32 | Yes | Yes | Mobile Charting | 75 | 85 | 5 |
33 | No | Yes | Auto-Trading Signals | – | 90 | 6 |
34 | Yes | Yes | Market News | 60 | 85 | 5 |
35 | No | Yes | Economic News | – | 90 | 6 |
36 | Yes | Yes | Price History | 85 | 90 | 5 |
37 | Yes | Yes | Order Execution Speed | 75 | 85 | 5 |
38 | No | Yes | Financial News | – | 90 | 6 |
39 | Yes | Yes | Expert Advisor Compatibility | 85 | 90 | 10 |
40 | No | Yes | Multiple Languages | – | 90 | 5 |
41 | Yes | Yes | Technical Analysis | 80 | 90 | 5 |
42 | No | Yes | Social Trading Features | – | 90 | 6 |
43 | Yes | Yes | Backtesting | 75 | 90 | 5 |
44 | Yes | Yes | Automated Trading Strategies | 80 | 90 | 5 |
45 | Yes | Yes | Webinars and Education | 75 | 90 | 5 |
46 | Yes | Yes | Historical Data | 70 | 85 | 5 |
47 | No | Yes | Integrated News Feed | – | 90 | 5 |
48 | Yes | Yes | Customizable Interface | 80 | 90 | 5 |
49 | No | Yes | Market Sentiment Analysis | – | 90 | 5 |
50 | Yes | Yes | Price Analysis Tools | 75 | 85 | 5 |
Total | Yes | Yes | Total | 3345 | 4390 | – |
Getting balance from Binance
- Binance
- Create account
- Get API keys.
- Install mini conda
- Create environment
- Install there
- aiohttp
- ccxt – crypto
- Suppose to have visual c++ build tools
- cl.exe-find it and add it to path.
- pandas
- numpy
- requests
- Run the following code:
import ccxt# Initialize the exchange
exchange = ccxt.binance({
‘apiKey’: ‘5kRM6Qm80hlWGxAEwmBwdSrB0XkPLkd79PWdXyWRRf1DhbebSK1jsMGBVdaB7oVs’,
‘secret’: ‘hVpFqyka2ZAjcERaRheWjIs18hbOQI6tFTxTw8hLY1OSRUpL2yzSRawov5SCfAA0’,
‘enableRateLimit’: True,
})# Fetch the balance
balance = exchange.fetch_balance()
# Extract and display non-zero balances
non_zero_balances = {symbol: amount for symbol, amount in balance[‘total’].items() if amount > 0}
# Display non-zero balances in a table format
print(“Spot Account – Non-Zero Balances:”)print(“{:<10} {:<20}”.format(“Asset”, “Balance”))
for symbol, amount in non_zero_balances.items():
print(“{:<10} {:<20}”.format(symbol, amount))