博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

摘要: //读取程序图标,来作为托盘图标this.notifyIcon.Icon = System.Drawing.Icon.ExtractAssociatedIcon(System.Windows.Forms.Application.ExecutablePath); 线程池 ThreadPool.Queu 阅读全文

posted @ 2015-03-23 13:27 快乐家++ 阅读(627) 评论(0) 推荐(0)

2025年5月15日

摘要: 迅投知识库:http://dict.thinktrader.net/ tushare官网:https://tushare.pro/ AKShare 在线文档https://akshare.akfamily.xyz/ miniqmt+backtrader如何做量化回测?https://www.bili 阅读全文

posted @ 2025-05-15 20:32 快乐家++ 阅读(15) 评论(0) 推荐(0)

2024年11月27日

摘要: 通过 PyWenCai 模块采集问财涨停数据的例子 # 导入PyWenCai模块 import pandas as pd import pywencai import json from datetime import datetime, timedelta def 获取涨停板数据(start_da 阅读全文

posted @ 2024-11-27 08:11 快乐家++ 阅读(926) 评论(0) 推荐(0)

2022年12月19日

摘要: MA1:MA(C,N1) NODRAW;MA2:MA(C,N2) NODRAW;MA3:MA(C,N3) NODRAW; MAXJX:MAX(MAX(MA1,MA2),MA3) NODRAW;MINJX:MIN(MIN(MA1,MA2),MA3) NODRAW;BL:(MAXJX-MINJX)/MI 阅读全文

posted @ 2022-12-19 19:42 快乐家++ 阅读(247) 评论(0) 推荐(0)

2020年5月13日

摘要: BEGIN TRAN Tran_Money --开始事务 DECLARE @tran_error int; SET @tran_error = 0; BEGIN TRY --要执行的插入、更新SQL语句 SET @tran_error = @tran_error + @@ERROR; END TRY 阅读全文

posted @ 2020-05-13 18:18 快乐家++ 阅读(396) 评论(0) 推荐(0)

2020年5月7日

摘要: 表结构 功能 SQL Server Access 表结构 功能 用表B的数据(mc列)更新表A的mc列 SQL Server update A SET A.mc = b.mc FROM A ,B WHERE A.bmbh = B.bmbh and A.xmbh = B.xmbh; Access up 阅读全文

posted @ 2020-05-07 11:13 快乐家++ 阅读(27613) 评论(0) 推荐(3)

2020年2月2日

摘要: Form1.cs using CefSharp; using CefSharp.WinForms; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin 阅读全文

posted @ 2020-02-02 20:19 快乐家++ 阅读(621) 评论(0) 推荐(0)

2019年4月10日

摘要: <rule name="Redirect" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_HOST}" pattern="^(w1.baidu.com|w2.taobao.com|xyw0001.my 阅读全文

posted @ 2019-04-10 22:54 快乐家++ 阅读(4254) 评论(0) 推荐(0)

2018年11月28日

摘要: 原理:查找项目目录下的 csproj 文件,解析它,找到节点TargetFrameworkVersion,判断.net版本 阅读全文

posted @ 2018-11-28 16:52 快乐家++ 阅读(945) 评论(0) 推荐(0)

2018年9月8日

摘要: var J = JsonConvert.DeserializeObject(textBox1.Text) as JObject; var M = new schemeModel(); toInstance(J, ref M); 阅读全文

posted @ 2018-09-08 19:36 快乐家++ 阅读(469) 评论(0) 推荐(0)

2017年11月18日

摘要: DECLARE @keys nvarchar(200) DECLARE @pageindex int DECLARE @pagesize int DECLARE @classid int set @keys = '' set @pageindex = 1; set @pagesize = 20; set @classid = 17; with temptbl as ( sel... 阅读全文

posted @ 2017-11-18 16:16 快乐家++ 阅读(815) 评论(0) 推荐(0)