Skip to content

Instantly share code, notes, and snippets.

View dyllanwli's full-sized avatar
🎸
Focusing

DY-L dyllanwli

🎸
Focusing
View GitHub Profile
@dyllanwli
dyllanwli / colabcode.sh
Created November 30, 2020 22:27
Run VScode on colab
!curl -fsSL https://code-server.dev/install.sh | sh
!pip install -qqq pyngrok
from pyngrok import ngrok
url = ngrok.connect(port=9000)
print(url)
!nohup code-server --port 9000 --auth none &
@dyllanwli
dyllanwli / chatgpt.py
Created May 7, 2023 04:53
Chatgpt commodity trading based on TQSDK
from datetime import date, datetime
from contextlib import closing
import openai
import time
import math
import typing
import numpy as np
import pandas as pd
from tqsdk import tafunc, TqAuth, TqApi, TqSim, TqBacktest, TqAccount, TargetPosTask, BacktestFinished