Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
firmware-amd-graphics install | |
firmware-ath9k-htc install | |
firmware-atheros install | |
firmware-bnx2 install | |
firmware-bnx2x install | |
firmware-brcm80211 install | |
firmware-cavium install | |
firmware-intel-sound install | |
firmware-intelwimax install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# downloadXkcd.py - Download every single XKCD comic. | |
''' | |
Loads XKCD home page | |
Saves comic image on the page | |
Follows previous comic link | |
Repeats until first comic | |
Req: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# References : | |
# - https://stackoverflow.com/questions/61776425/logic-for-real-time-algo-trading-expert | |
import pytz | |
import pandas as pd | |
import MetaTrader5 as mt5 | |
import time | |
from datetime import datetime | |
from threading import Timer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//+------------------------------------------------------------------+ | |
//| Robot Desiree Incomplete | |
//| Copyright 2015,Lucas Liew | |
//| lucas@blackalgotechnologies.com | |
//+------------------------------------------------------------------+ | |
#property copyright "Copyright 2015, Black Algo Technologies Pte Ltd" | |
#property link "lucas@blackalgotechnologies.com" | |
/* ----------- READ ME ---------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void printMyOrders() { | |
int highestBuyPos=-1, lowestSellPos=-1; | |
double highestBuyPrice=0.0, lowestSellPrice=1000000.0; | |
for(int i=0; i < OrdersTotal(); i++){ | |
if(!OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) { | |
return ; | |
} | |
if(OrderSymbol()==Symbol()) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Font] | |
Bold=700 | |
FaceName=Consolas | |
Height=10 | |
[Colors] | |
Color0=2304040 | |
Color1=16119285 | |
Color2=6255480 | |
Color3=2963255 | |
Color4=2304040 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Colors] | |
Color0=16777215 | |
Color1=0 | |
Color2=16777215 | |
Color3=14120960 | |
Color4=15790320 |