等级: 小学生
在线时间: 464 分钟
日志总数: 43
评论数量: 1
访问次数: 23882
建立时间: 2007-04-28
委比=(委买手数-委卖手数)/(委买手数+委卖手数)×100%
正值 买盘较强
负值 卖盘较强
量比=当日即时为止的总成交量/(过去五日的每分钟平均成交量×当日即时为止的交易时间)
>1 成交较过去5日活跃
<1 成交较过去5日不活跃
买入=最高委托买入报价=委买价 以“委卖价”实现的成交量=外盘
卖出=最低委托卖出报价..
包装模式:
TData = class
private
FVal1: Integer;
FVal2: string;
public
property Val1: Integer read FVal1 write FVal1;
property Val2..
一、Format函数的用法
Format是一个很常用,却又似乎很烦的方法,本人试图对这个方法的帮助进行一些翻译,让它有一个完整的概貌,以供大家查询之用:
首先看它的声明:
function Format(const Format: string; const Args: array of const): string; overload;
事实上Format方法有两个种形式,另外一种是三个参数的,主要区别在于它是线程安全的,但并不多用,所以这里只对第一个介绍:
fun..
Sqlite3支持的数据类型
NULL
INTEGER
REAL
TEXT
BLOB
但实际上,sqlite3也接受如下的数据类型:
smallint 16 位元的整数。
interger 32 位元的整数。
decimal(p,s) p 精确值和 s 大小的十进位整数,精确值p是指全部有几个数(digits)大小值,s是指小数点後有几位数。如果没有特别指定,则系统会设为 p=5; s=0 。
flo..
EXPORTS
sqlite3_aggregate_context
sqlite3_aggregate_count
sqlite3_apis
sqlite3_auto_extension
sqlite3_bind_blob
sqlite3_bind_double
sqlite3_bind_int
sqlite3_bind_int64
sqlite3_bind_null
sqlite3_bind_parameter_count
sqlite3_bind_parameter_index
sqlite3_bind_parameter_name
sqlite3_bind_text
sqlite3_bind_text16
sqlite3_bind_value
sq..
==================================
输出函数名: sqlite3_column_count
delphi定义: Tsqlite_column_count = function(db: Psqlite): Integer; cdecl;
说明:返回结..
使用sqlite数据库 只需要一个文件sqlite3.dll,内部的输出函数逐个学习吧!
sqlite数据类型的定义:
type
Psqlite = Pointer;
Psqlite_func = Pointer;
Psqlite_vm = Poin..
SQLite引擎
SQLite http://www.sqlite.org/
SQLite Tools
1、一个非常不错的SQLite Database Explorer and Query Analyzer
SQL..
普通判断:
if MSQuery.State in [dsEdit, dsInsert] then
//变动过
else
//未变动
使用缓存控件TMSUpdateSQL
MSQuery.CachedUpdates := True
MSQuery.UpdateObject := MSUpdateSQL;
变动判断:
if MSQuery.UpdatesPending then
//变动过
else
//未变动
属性OptionEh下有个dghRowHighlight默认为False,设置True即可
