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
| #version 300 es | |
| #ifdef GL_FRAGMENT_PRECISION_HIGH | |
| precision highp float; | |
| #else | |
| precision mediump float; | |
| #endif | |
| out vec4 fragColor; | |
| uniform vec2 resolution; | |
| uniform vec3 orientation; |
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 -*- | |
| """ | |
| Created on Wed Dec 28 01:22:07 2022 | |
| @author: yalinyuksel | |
| """ | |
| import yfinance as yf #import yfinance | |
| import pandas as pd #import pandas | |
| import numpy as np #import numpy |
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
| ### IMPORTANT THIS CODE IS OUTDATED!!!! | |
| ### PLEASE USE THE AWK SCRIPT FROM VERSION 3cBotPlus 6beta | |
| # -*- coding: utf-8 -*- | |
| # Author - hBroker at 3cBotPlus | |
| # www.3cbotplus.com | |
| # For MAC users: You need install before: | |
| # xcode-select --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
| from argparse import ArgumentParser | |
| from decouple import config | |
| from starter_system import AlpacaStarterSystem | |
| # Import Keys | |
| KEY = config('ALPACA_PAPER_API_KEY') | |
| SECRET = config('ALPACA_PAPER_SECRET') | |
| URL = config('ALPACA_PAPER_URL') |
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
| //Coded by Rajandran R | |
| //Date : 27th Aug 2020 | |
| //Requirements | |
| //Used Amipy v0.2.0 (64-bit) - Download from https://forum.amibroker.com/t/amipy-plug-in-python-integration/20337/32 | |
| //Amibroker (64 Bit) v6.3 or higher | |
| //Python 3.8 or higher | |
| //ADF Test Return Values | |
| //adffloat - The test statistic. |
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
| provider "aws" { | |
| version = "~> 2.0" | |
| region = "eu-west-2" | |
| } | |
| # Providing a reference to our default VPC | |
| resource "aws_default_vpc" "default_vpc" { | |
| } | |
| # Providing a reference to our default subnets |
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
| provider "aws" { | |
| version = "~> 2.0" | |
| region = "eu-west-2" # Setting my region to London. Use your own region here | |
| } | |
| resource "aws_ecr_repository" "my_first_ecr_repo" { | |
| name = "my-first-ecr-repo" # Naming my repository | |
| } |
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
| AWSTemplateFormatVersion: 2010-09-09 | |
| Resources: | |
| VPC: | |
| Type: AWS::EC2::VPC | |
| Properties: | |
| CidrBlock: 10.0.0.0/16 | |
| PublicSubnetA: | |
| Type: AWS::EC2::Subnet |
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 python | |
| """ A simple Interactive Brokers application that will fetch | |
| current market data for a contract from the IB TWS/Gateway. """ | |
| import argparse | |
| import logging | |
| from typing import List | |
| from ibapi import wrapper |
NewerOlder