摘要: // This Pine Script® code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © yyy_trade //@version=6 indica 阅读全文
posted @ 2025-12-19 09:35 Ycsuuu 阅读(5) 评论(0) 推荐(0)
摘要: from dataclasses import dataclass import os import pytz from binance.client import Client import pandas as pd from loguru import logger import warning 阅读全文
posted @ 2025-09-04 08:34 Ycsuuu 阅读(32) 评论(0) 推荐(0)
摘要: import requests import pandas as pd import pytz from dataclasses import dataclass from typing import List, Optional import os from loguru import logge 阅读全文
posted @ 2025-08-05 15:06 Ycsuuu 阅读(22) 评论(0) 推荐(0)
摘要: C:\Users\123\AppData\Local\Programs\Python\Python312\python.exe C:\Users\123\Desktop\new_binance\main.py 2025-11-25 03:00:00 137.31 137.73 136.68 137. 阅读全文
posted @ 2025-07-20 23:26 Ycsuuu 阅读(22) 评论(0) 推荐(0)
摘要: // This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-s 阅读全文
posted @ 2025-07-13 21:45 Ycsuuu 阅读(25) 评论(0) 推荐(0)
摘要: CNN #coding:utf8 import torch import torch.nn as nn import numpy as np """ 使用pytorch实现CNN 手动实现CNN 对比 """ #一个二维卷积 class TorchCNN(nn.Module): def __init 阅读全文
posted @ 2024-12-24 09:56 Ycsuuu 阅读(100) 评论(0) 推荐(0)
摘要: 模型文件下载 git clone https://huggingface.co/google-bert/bert-base-chinese 查看config.json配置文件 { "architectures": [ "BertForMaskedLM" ], "attention_probs_dro 阅读全文
posted @ 2024-12-17 09:15 Ycsuuu 阅读(82) 评论(0) 推荐(0)
摘要: import requests import pandas as pd from datetime import datetime, timedelta from loguru import logger import pytz # 配置loguru日志 logger.add("kline_proc 阅读全文
posted @ 2024-12-13 14:22 Ycsuuu 阅读(81) 评论(0) 推荐(0)