-
Notifications
You must be signed in to change notification settings - Fork 11
/
QL.lua
1794 lines (1760 loc) · 85.6 KB
/
QL.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LIBVERSION='0.5.4.0'
LIBVERSIONINT=540
-- По всем вопросам можно писать тут - forum.qlua.org
package.cpath=".\\?.dll;.\\?51.dll;C:\\Program Files (x86)\\Lua\\5.1\\?.dll;C:\\Program Files (x86)\\Lua\\5.1\\?51.dll;C:\\Program Files (x86)\\Lua\\5.1\\clibs\\?.dll;C:\\Program Files (x86)\\Lua\\5.1\\clibs\\?51.dll;C:\\Program Files (x86)\\Lua\\5.1\\loadall.dll;C:\\Program Files (x86)\\Lua\\5.1\\clibs\\loadall.dll;C:\\Program Files\\Lua\\5.1\\?.dll;C:\\Program Files\\Lua\\5.1\\?51.dll;C:\\Program Files\\Lua\\5.1\\clibs\\?.dll;C:\\Program Files\\Lua\\5.1\\clibs\\?51.dll;C:\\Program Files\\Lua\\5.1\\loadall.dll;C:\\Program Files\\Lua\\5.1\\clibs\\loadall.dll"..package.cpath
package.path=package.path..";.\\?.lua;C:\\Program Files (x86)\\Lua\\5.1\\lua\\?.lua;C:\\Program Files (x86)\\Lua\\5.1\\lua\\?\\init.lua;C:\\Program Files (x86)\\Lua\\5.1\\?.lua;C:\\Program Files (x86)\\Lua\\5.1\\?\\init.lua;C:\\Program Files (x86)\\Lua\\5.1\\lua\\?.luac;C:\\Program Files\\Lua\\5.1\\lua\\?.lua;C:\\Program Files\\Lua\\5.1\\lua\\?\\init.lua;C:\\Program Files\\Lua\\5.1\\?.lua;C:\\Program Files\\Lua\\5.1\\?\\init.lua;C:\\Program Files\\Lua\\5.1\\lua\\?.luac;"
require"socket"
local math_floor=math.floor
local math_random=math.random
local math_randomseed=math.randomseed
local string_format=string.format
local string_gsub=string.gsub
local string_gmatch=string.gmatch
local string_find=string.find
local string_lower=string.lower
local string_len=string.len
local string_sub=string.sub
local string_upper=string.upper
local table_insert=table.insert
local table_remove=table.remove
local RANDOM_SEED=socket.gettime()*10000
FUT_OPT_CLASSES="FUTUX,OPTUX,SPBOPT,SPBFUT"
DATETIME_MIN_VALUE={['day']=1,['week_day']=1,['hour']=0,['ms']=0,['min']=0,['month']=1,['sec']=0,['year']=1700}
DATETIME_MAX_VALUE={['day']=31,['week_day']=7,['hour']=23,['ms']=999,['min']=59,['month']=12,['sec']=59,['year']=9999}
-- Standart Colors
WHITE=16777215
BLACK=0
GREEN=32768
RED=255
LIGHT_GREEN=8454016
LIGHT_RED=8421631
-- for custom colors you may use this tool http://www.colorspire.com/rgb-color-wheel/
-- terminal versions globals
VERSIONLESS6713=false
VERSIONLESS660118=false
TERMINAL_VERSION=getInfoParam('VERSION')
local ordernumberfieldname='order_num'
local securityfiledname='sec_code'
function versionLess(ver1,ver2)
local begin,ver_1=0
for ver_2 in string_gmatch(ver2,'%d+') do
_,begin,ver_1=string_find(ver1,'(%d+)',begin+1)
if ver_1~=ver_2 then return not ver_1 or ver_1+0<ver_2+0 end
end
return false
end
if versionLess(TERMINAL_VERSION,'6.7.1.3') then
require"bit"
VERSIONLESS6713=true
end
if versionLess(TERMINAL_VERSION,'6.6.0.118') then
VERSIONLESS660118=true
ordernumberfieldname='ordernum'
securityfiledname='seccode'
end
if DEFAULT_COLOR==nil then DEFAULT_COLOR=-1 end
--if QTABLE_NO_INDEX==nil then QTABLE_NO_INDEX=-1 end
--[[
Trading Module
]]--
function sendLimit(class,security,direction,price,volume,account,client_code,comment,execution_condition,expire_date,market_maker)
if string_find(FUT_OPT_CLASSES,class)~=nil then
return sendLimitFO(class,security,direction,price,volume,account,comment,execution_condition,expire_date,market_maker)
else
return sendLimitSpot(class,security,direction,price,volume,account,client_code,comment,market_maker)
end
end
function sendLimitFO(class,security,direction,price,volume,account,comment,execution_condition,expire_date,market_maker)
-- отправка лимитированной заявки
-- все параметры кроме кода клиента и коментария должны быть не нил
-- ВАЖНО! цена должна быть стрингом с количеством знаков после точки для данной бумаги
-- если код клиента нил - подлставляем счет (для спот-рынков)
-- execution_condition может принимать 2 варианта - FILL_OR_KILL(Немедленно или отклонить),KILL_BALANCE(Снять остаток). Если параметр не указан то по умолчанию Поставить в очередь. ВНИМАНИЕ! Работает ТОЛЬКО на срочном рынке!
-- expire_date - указывается для переноса заявок на срочном рынке
-- market_maker - признак заявки маркет-мейкера. true\false
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or price==nil or volume==nil or account==nil) then
return nil,"QL.sendLimitFO(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="Ввод заявки",
["CLASSCODE"]=class,
["Тип"]="Лимитированная",
["Условие исполнения"]="Поставить в очередь",
["Класс"]=class,
["Инструмент"]=security,
["Количество"]=string_format("%d",tostring(volume)),
["Цена"]=toPrice(security,price,class),
["Торговый счет"]=tostring(account)
}
if direction=='B' then transaction['К/П']='Покупка' else transaction['К/П']='Продажа' end
if comment~=nil then
transaction['Комментарий']=string_sub(tostring(comment),0,20)
else
transaction['Комментарий']='QL'
end
if expire_date~=nil then
transaction['Переносить заявку']='Да'
transaction['Дата экспирации']=tostring(expire_date)
end
if execution_condition~=nil then
if string_upper(execution_condition)=='FILL_OR_KILL' then
transaction["Условие исполнения"]='Немедленно или отклонить'
elseif string_upper(execution_condition)=='KILL_BALANCE' then
transaction["Условие исполнения"]='Снять остаток'
end
end
if market_maker~=nil and market_maker then
transaction['MARKET_MAKER_ORDER']='YES'
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendLimitFO():"..res
else
return trans_id, "QL.sendLimitFO(): Limit order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." Price="..price.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id
end
end
function sendLimitSpot(class,security,direction,price,volume,account,client_code,comment,market_maker)
-- отправка лимитированной заявки
-- все параметры кроме кода клиента и коментария должны быть не нил
-- ВАЖНО! цена должна быть стрингом с количеством знаков после точки для данной бумаги
-- если код клиента нил - подлставляем счет
-- market_maker - признак заявки маркет-мейкера. true\false
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or price==nil or volume==nil or account==nil) then
return nil,"QL.sendLimitSpot(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_ORDER",
["CLASSCODE"]=class,
["SECCODE"]=security,
["OPERATION"]=direction,
["QUANTITY"]=string_format("%d",tostring(volume)),
["PRICE"]=toPrice(security,price,class),
["ACCOUNT"]=tostring(account)
}
if client_code==nil then
transaction.client_code=tostring(account)
else
transaction.client_code=tostring(client_code)
end
if comment~=nil then
transaction.client_code=string_sub(transaction.client_code..'/'..tostring(comment),0,20)
else
transaction.client_code=string_sub(transaction.client_code..'/QL',0,20)
end
if market_maker~=nil and market_maker then
transaction['MARKET_MAKER_ORDER']='YES'
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendLimitSpot():"..res
else
return trans_id, "QL.sendLimitSpot(): Limit order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." Price="..price.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id
end
end
function sendIceberg(class,security,direction,price,show_volume,volume,account,client_code,comment)
-- отправка лимитированной заявки
-- все параметры кроме кода клиента и коментария должны быть не нил
-- ВАЖНО! цена должна быть стрингом с количеством знаков после точки для данной бумаги
-- если код клиента нил - подлставляем счет
-- market_maker - признак заявки маркет-мейкера. true\false
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or price==nil or volume==nil or show_volume==nil or account==nil or client_code==nil) then
return nil,"QL.sendIceberg(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="Ввод айсберг заявки",
["CLASSCODE"]=class,
["Класс"]=class,
["Инструмент"]=security,
["Лоты"]=string_format("%d",tostring(volume)),
["Видимое количество"]=string_format("%d",tostring(show_volume)),
["Цена"]=toPrice(security,price,class),
["Торговый счет"]=tostring(account),
["Примечание"]=tostring(client_code),
["Тип"]="Лимитированная",
["Тип по цене"]="по разным ценам",
["Тип по остатку"]="поставить в очередь",
["Тип ввода значения цены"]="По цене",
}
if direction=='B' then transaction['К/П']='Покупка' else transaction['К/П']='Продажа' end
if comment~=nil then
transaction["Примечание"]=string_sub(transaction.client_code..'/'..tostring(comment),0,20)
else
transaction["Примечание"]=string_sub(transaction.client_code..'/QL',0,20)
end
if market_maker~=nil and market_maker then
transaction['MARKET_MAKER_ORDER']='YES'
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendLimitSpot():"..res
else
return trans_id, "QL.sendLimitSpot(): Limit order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." Price="..price.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id
end
end
function sendMarket(class,security,direction,volume,account,client_code,comment)
-- отправка рыночной заявки
-- все параметры кроме кода клиента и коментария должны быть не нил
-- если код клиента нил - подлставляем счет
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or volume==nil or account==nil) then
return nil,"QL.sendMarket(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_ORDER",
["CLASSCODE"]=class,
["SECCODE"]=security,
["OPERATION"]=direction,
["TYPE"]="M",
["QUANTITY"]=string_format("%d",tostring(volume)),
["ACCOUNT"]=account
}
if client_code==nil then
transaction.client_code=account
else
transaction.client_code=client_code
end
if string_find(FUT_OPT_CLASSES,class)~=nil then
local sign=0
if direction=="B" then
transaction.price=getParamEx(class,security,"pricemax").param_value
if transaction.price==0 then
transaction.price=getParamEx(class,security,"offer").param_value+10*getParamEx(class,security,"SEC_PRICE_STEP").param_value
end
--toLog(Log,'IN pricemax ='..transaction.price)
sign=1
else
transaction.price=getParamEx(class,security,"pricemin").param_value
--firat chance
if transaction.price==0 then
transaction.price=getParamEx(class,security,"bid").param_value-10*getParamEx(class,security,"SEC_PRICE_STEP").param_value
end
--toLog(Log,'IN pricemin ='..transaction.price)
sign=-1
end
-- last chance
if transaction.price==0 then
transaction.price=getParamEx(class,security,"last").param_value+sign*10*getParamEx(class,security,"SEC_PRICE_STEP").param_value
end
transaction.price=toPrice(security,transaction.price,class)
else
transaction.price="0"
end
if comment~=nil then
transaction.client_code=string_sub(transaction.client_code..'/'..tostring(comment),0,20)
else
transaction.client_code=string_sub(transaction.client_code..'/QL',0,20)
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendMarket():"..res
else
return trans_id, "QL.sendMarket(): Market order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id..' Price='..transaction.price
end
end
function sendStop(class,security,direction,stopprice,dealprice,volume,account,exp_date,client_code,comment)
-- отправка простой стоп-заявки
-- все параметры кроме кода клиента,коментария и времени жизни должны быть не нил
-- если код клиента нил - подлставляем счет
-- если время жизни не указано - то заявка "До Отмены"
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or stopprice==nil or volume==nil or account==nil or dealprice==nil) then
return nil,"QL.sendStop(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_STOP_ORDER",
["CLASSCODE"]=class,
["SECCODE"]=security,
["OPERATION"]=direction,
["QUANTITY"]=string_format("%d",tostring(volume)),
["STOPPRICE"]=toPrice(security,stopprice,class),
["PRICE"]=toPrice(security,dealprice,class),
["ACCOUNT"]=tostring(account)
}
if client_code==nil then
transaction.client_code=tostring(account)
else
transaction.client_code=tostring(client_code)
end
if exp_date==nil then
transaction["EXPIRY_DATE"]="GTC"
else
transaction['EXPIRY_DATE']=tostring(exp_date)
end
if comment~=nil then
transaction.client_code=string_sub(transaction.client_code..'/'..tostring(comment),0,20)
else
transaction.client_code=string_sub(transaction.client_code..'/QL',0,20)
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendStop():"..res
else
return trans_id, "QL.sendStop(): Stop-order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." StopPrice="..stopprice.." DealPrice="..dealprice.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id
end
end
function sendTPSL(class,security,direction,price,volume,tpoffset,sloffset,maxoffset,defspread,account,exp_date,client_code,comment)
-- отправка простой стоп-заявки
-- все параметры кроме кода клиента,коментария и времени жизни должны быть не нил
-- если код клиента нил - подлставляем счет
-- если время жизни не указано - то заявка "До Отмены"
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or stopprice==nil or volume==nil or account==nil or dealprice==nil) then
return nil,"QL.sendStop(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_STOP_ORDER",
["CLASSCODE"]=class,
["SECCODE"]=security,
["OPERATION"]=direction,
["QUANTITY"]=string_format("%d",tostring(volume)),
["STOPPRICE"]=toPrice(security,stopprice,class),
["PRICE"]=toPrice(security,dealprice,class),
["ACCOUNT"]=tostring(account)
}
if client_code==nil then
transaction.client_code=tostring(account)
else
transaction.client_code=tostring(client_code)
end
if exp_date==nil then
transaction["EXPIRY_DATE"]="GTC"
else
transaction['EXPIRY_DATE']=tostring(exp_date)
end
if comment~=nil then
transaction.comment=tostring(comment)
if string_find(FUT_OPT_CLASSES,class)~=nil then transaction.client_code=string_sub('/QL'..comment,0,20) else transaction.client_code=string_sub(transaction.client_code..'//QL'..comment,0,20) end
else
transaction.comment=tostring(comment)
if string_find(FUT_OPT_CLASSES,class)~=nil then transaction.client_code=string_sub('/QL',0,20) else transaction.client_code=string_sub(transaction.client_code..'//QL',0,20) end
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendStop():"..res
else
return trans_id, "QL.sendStop(): Stop-order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." StopPrice="..stopprice.." DealPrice="..dealprice.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id
end
end
function sendTakeProfitAndStopLimit(class,security, direction, price, stopprice, stopprice2, volume, offset, offsetunits, deffspread, deffspreadunits, account, exp_date, client_code, comment)
if class==nil or security==nil or direction==nil or price==nil or stopprice==nil or stopprice2==nil or volume==nil or account==nil or offset==nil or offsetunits==nil or deffspread==nil or deffspreadunits==nil then
return nil, "QL.sendTakeProfitAndStopLimit(): Can`t send order. Nil parameters.";
end
local trans_id = random_max();
local transaction = {
["TRANS_ID"] = tostring(trans_id),
["ACTION"] = "NEW_STOP_ORDER",
["CLASSCODE"] = class,
["SECCODE"] = security,
["STOP_ORDER_KIND"] = 'TAKE_PROFIT_AND_STOP_LIMIT_ORDER',
["OPERATION"] = direction,
["QUANTITY"] = string_format("%d", tostring(volume)),
["PRICE"] = toPrice(security, price, class), -- Цена заявки, за единицу инструмента.
["STOPPRICE"] = toPrice(security, stopprice, class), -- тэйк-профит
["STOPPRICE2"] = toPrice(security, stopprice2, class), -- стоп-лимит
["OFFSET_UNITS"] = offsetunits,
["SPREAD_UNITS"] = deffspreadunits,
["OFFSET"] = tostring(offset),
["SPREAD"] = tostring(deffspread),
["ACCOUNT"] = tostring(account),
["MARKET_STOP_LIMIT"] = "NO",
["MARKET_TAKE_PROFIT"] = "NO",
["ACCOUNT"] = tostring(account),
}
if client_code == nil then
transaction.client_code = tostring(account);
else
transaction.client_code = tostring(client_code);
end
if exp_date == nil then
transaction["EXPIRY_DATE"] = "GTC";
else
transaction['EXPIRY_DATE'] = tostring(exp_date);
end
if comment ~= nil then
transaction.client_code = string_sub(transaction.client_code .. '/' .. tostring(comment), 0, 20);
else
transaction.client_code = string_sub(transaction.client_code .. '/QL', 0, 20);
end
local res = sendTransaction(transaction);
if res ~= "" then
return nil, "QL.sendTakeProfitAndStopLimit():" .. res;
else
return trans_id, "QL.sendTakeProfitAndStopLimit(): Take-profit-and-Stop-Limit sended sucesfully. Class=" ..class.. " Sec=" ..security.. " Dir=" ..direction.. " Price=" ..price.. " Offset=" ..offset.. ' OffsetUnits=' ..offsetunits.. ' Spread=' ..deffspread.. ' SpreadUnits=' ..deffspreadunits.. " Vol=" ..volume.. " Acc=" ..account.. " Trans_id=" ..trans_id;
end
end
function sendTake(class,security,direction,price,volume,offset,offsetunits,deffspread,deffspreadunits,account,exp_date,client_code,comment)
-- отправка простой стоп-заявки
-- все параметры кроме кода клиента,коментария и времени жизни должны быть не нил
-- если код клиента нил - подлставляем счет
-- если время жизни не указано - то заявка "До Отмены"
-- Данная функция возвращает 2 параметра
-- 1. ID присвоенный транзакции либо nil если транзакция отвергнута на уровне сервера Квик
-- 2. Ответное сообщение сервера Квик либо строку с параметрами транзакции
if (class==nil or security==nil or direction==nil or price==nil or volume==nil or account==nil or offset==nil or offsetunits==nil or deffspread==nil or deffspreadunits==nil) then
return nil,"QL.sendTake(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_STOP_ORDER",
["CLASSCODE"]=class,
["SECCODE"]=security,
["STOP_ORDER_KIND"]='TAKE_PROFIT_STOP_ORDER',
["OPERATION"]=direction,
["QUANTITY"]=string_format("%d",tostring(volume)),
["STOPPRICE"]=toPrice(security,price,class),
["OFFSET_UNITS"]=offsetunits,
["SPREAD_UNITS"]=deffspreadunits,
["OFFSET"]=tostring(offset),
["SPREAD"]=tostring(deffspread),
["ACCOUNT"]=tostring(account)
}
if client_code==nil then
transaction.client_code=tostring(account)
else
transaction.client_code=tostring(client_code)
end
if exp_date==nil then
transaction["EXPIRY_DATE"]="GTC"
else
transaction['EXPIRY_DATE']=tostring(exp_date)
end
if comment~=nil then
transaction.client_code=string_sub(transaction.client_code..'/'..tostring(comment),0,20)
else
transaction.client_code=string_sub(transaction.client_code..'/QL',0,20)
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendTake():"..res
else
return trans_id, "QL.sendTake(): Take-profit sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." Price="..price.." Offset="..offset..' OffsetUnits='..offsetunits..' Spread='..deffspread..' SpreadUnits='..deffspreadunits.." Vol="..volume.." Acc="..account.." Trans_id="..trans_id
end
end
function moveOrder(mode,fo_number,fo_p,fo_q,so_number,so_p,so_q)
-- перемещение заявки
-- минимальный набор параметров mode,fo_number,fo_p
-- в зависимости от класса первой заявки будет вызвана функция перемещения либо для СПОТ либо Срочного рынка
if (fo_number==nil or fo_p==nil or mode==nil) then
return nil,"QL.moveOrder(): Can`t move order. Nil parameters."
end
local forder=getRowFromTable("orders",ordernumberfieldname,fo_number)
if forder==nil then
return nil,"QL.moveOrder(): Can`t find order_number="..fo_number.." in orders table!"
end
if string_find(FUT_OPT_CLASSES,forder.class_code)~=nil then
return moveOrderFO(mode,fo_number,fo_p,fo_q,so_number,so_p,so_q)
else
return moveOrderSpot(mode,fo_number,fo_p,fo_q,so_number,so_p,so_q)
end
end
function moveOrderSpot(mode,fo_number,fo_p,fo_q,so_number,so_p,so_q)
-- перемещение заявок для рынка спот
-- минимальный набор параметров mode,fo_number,fo_p
-- отправится 2 транзакции снятие+постановка для каждой из указанных заявок
-- Возвращаем 2 параметра :
-- 1. Nil - если неудача или номер транзакции (2-й если 2 заявки)
-- 2. Диагностиеское сообщение
if (fo_number==nil or fo_p==nil) then
return nil,"QL.moveOrderSpot(): Can`t move order. Nil parameters."
end
local forder=getRowFromTable("orders",ordernumberfieldname,fo_number)
if forder==nil then
return nil,"QL.moveOrderSpot(): Can`t find order_number="..fo_number.." in orders table!"
end
if (orderflags2table(forder.flags).cancelled or (orderflags2table(forder.flags).done and forder.balance==0)) then
return nil,"QL.moveOrderSpot(): Can`t move cancelled or done order!"
end
if mode==0 then
--Если MODE=0, то заявки с номерами, указанными после ключей FIRST_ORDER_NUMBER и SECOND_ORDER_NUMBER, снимаются.
--В торговую систему отправляются две новые заявки, при этом изменяется только цена заявок, количество остается прежним;
if so_number~=nil and so_p~=nil then
_,ms=killOrder(fo_number,forder[securityfiledname],forder.class_code)
--toLog("ko.txt",ms)
trid,ms1=sendLimit(forder.class_code,forder[securityfiledname],orderflags2table(forder.flags).operation,fo_p,tostring(forder.balance),forder.account,forder.client_code,forder.comment)
local sorder=getRowFromTable("orders",ordernumberfieldname,so_number)
if sorder==nil then
return nil,"QL.moveOrderSpot(): Can`t find order_number="..so_number.." in orders table!"
end
_,ms=killOrder(so_number,sorder[securityfiledname],sorder.class_code)
--toLog("ko.txt",ms)
trid2,ms2=sendLimit(sorder.class_code,sorder[securityfiledname],orderflags2table(sorder.flags).operation,so_p,tostring(sorder.balance),sorder.account,sorder.client_code,sorder.comment)
if trid~=nil and trid2~=nil then
return trid2,"QL.moveOrderSpot(): Orders moved. Trans_id1="..trid.." Trans_id2="..trid2
else
return nil,"QL.moveOrderSpot(): One or more orders not moved! Msg1="..ms1.." Msg2="..ms2
end
else
_,ms=killOrder(fo_number,forder[securityfiledname],forder.class_code)
--toLog("ko.txt",ms)
local trid,ms=sendLimit(forder.class_code,forder[securityfiledname],orderflags2table(forder.flags).operation,fo_p,tostring(forder.balance),forder.account,forder.client_code,forder.comment)
if trid~=nil then
return trid,"QL.moveOrderSpot(): Order moved. Trans_Id="..trid
else
return nil,"QL.moveOrderSpot(): Order not moved! Msg="..ms
end
end
elseif mode==1 then
--Если MODE=1, то заявки с номерами, указанными после ключей FIRST_ORDER_NUMBER и SECOND_ORDER_NUMBER, снимаются.
--В торговую систему отправляются две новые заявки, при этом изменится как цена заявки, так и количество;
if so_number~=nil and so_p~=nil and so_q~=nil then
_,_=killOrder(fo_number,forder[securityfiledname],forder.class_code)
local trid,ms1=sendLimit(forder.class_code,forder[securityfiledname],orderflags2table(forder.flags).operation,fo_p,tostring(fo_q),forder.account,forder.client_code,forder.comment)
local sorder=getRowFromTable("orders",ordernumberfieldname,so_number)
if sorder==nil then
return nil,"QL.moveOrderSpot(): Can`t find order_number="..so_number.." in orders table!"
end
_,_=killOrder(so_number,sorder[securityfiledname],sorder.class_code)
local trid2,ms2=sendLimit(sorder.class_code,sorder[securityfiledname],orderflags2table(sorder.flags).operation,so_p,tostring(so_q),sorder.account,sorder.client_code,sorder.comment)
if trid~=nil and trid2~=nil then
return trid2,"QL.moveOrderSpot(): Orders moved. Trans_id1="..trid.." Trans_id2="..trid2
else
return nil,"QL.moveOrderSpot(): One or more orders not moved! Msg1="..ms1.." Msg2="..ms2
end
else
_,_=killOrder(fo_number,forder[securityfiledname],forder.class_code)
local trid,ms=sendLimit(forder.class_code,forder[securityfiledname],orderflags2table(forder.flags).operation,fo_p,tostring(fo_q),forder.account,forder.client_code,forder.comment)
if trid~=nil then
return trid,"QL.moveOrderSpot(): Order moved. Trans_Id="..trid
else
return nil,"QL.moveOrderSpot(): Order not moved! Msg="..ms
end
end
elseif mode==2 then
--Если MODE=2, то заявки с номерами, указанными после ключей FIRST_ORDER_NUMBER и SECOND_ORDER_NUMBER, снимаются.
--Если количество бумаг в каждой из снятых заявок совпадает со значениями, указанными после FIRST_ORDER_NEW_QUANTITY и SECOND_ORDER_NEW_QUANTITY, то в торговую систему отправляются две новые заявки с соответствующими параметрами.
if so_number~=nil and so_p~=nil and so_q~=nil then
local sorder=getRowFromTable("orders",ordernumberfieldname,so_number)
if sorder==nil then
return nil,"QL.moveOrderSpot(): Can`t find order_number="..so_number.." in orders table!"
end
_,_=killOrder(fo_number,forder[securityfiledname],forder.class_code)
_,_=killOrder(so_number,sorder[securityfiledname],sorder.class_code)
if forder.balance==fo_q and sorder.balance==so_q then
local trid,ms1=sendLimit(forder.class_code,forder[securityfiledname],orderflags2table(forder.flags).operation,fo_p,tostring(fo_q),forder.account,forder.client_code,forder.comment)
local trid2,ms2=sendLimit(sorder.class_code,sorder[securityfiledname],orderflags2table(sorder.flags).operation,so_p,tostring(so_q),sorder.account,sorder.client_code,sorder.comment)
if trid~=nil and trid2~=nil then
return trid2,"QL.moveOrderSpot(): Orders moved. Trans_id1="..trid.." Trans_id2="..trid2
else
return nil,"QL.moveOrderSpot(): One or more orders not moved! Msg1="..ms1.." Msg2="..ms2
end
else
return nil,"QL.moveOrderSpot(): Mode=2. Orders balance~=new_quantity"
end
else
_,_=killOrder(fo_number,forder[securityfiledname],forder.class_code)
local trid,ms=sendLimit(forder.class_code,forder[securityfiledname],orderflags2table(forder.flags).operation,fo_p,tostring(fo_q),forder.account,forder.client_code,forder.comment)
if trid~=nil then
return trid,"QL.moveOrderSpot(): Order moved. Trans_Id="..trid
else
return nil,"QL.moveOrderSpot(): Order not moved! Msg="..ms
end
end
else
return nil,"QL.moveOrder(): Mode out of range! Mode can be from {0,1,2}"
end
end
function moveOrderFO(mode,fo_number,fo_p,fo_q,so_number,so_p,so_q)
-- перемещение заявок для срочного рынка
-- отправка "нормальной" транзакции Квика
if (fo_number==nil or fo_p==nil or mode==nil) then
return nil,"QL.moveOrderFO(): Can`t move order. Nil parameters."
end
local transaction={}
if mode==0 then
if so_number~=nil and so_p~=nil then
transaction["SECOND_ORDER_NUMBER"]=tostring(so_number)
transaction["SECOND_ORDER_NEW_PRICE"]=so_p
transaction["SECOND_ORDER_NEW_QUANTITY"]="0"
end
transaction["FIRST_ORDER_NUMBER"]=tostring(fo_number)
transaction["FIRST_ORDER_NEW_PRICE"]=fo_p
transaction["FIRST_ORDER_NEW_QUANTITY"]="0"
transaction["MODE"]=tostring(mode)
elseif mode==1 then
if fo_q==nil or fo_q==0 then
return nil,"QL.moveOrder(): Mode=1. First Order Quantity can`t be nil or zero!"
end
if so_number~=nil and so_p~=nil and so_q>0 then
transaction["SECOND_ORDER_NUMBER"]=tostring(so_number)
transaction["SECOND_ORDER_NEW_PRICE"]=so_p
transaction["SECOND_ORDER_NEW_QUANTITY"]=tostring(so_q)
end
transaction["FIRST_ORDER_NUMBER"]=tostring(fo_number)
transaction["FIRST_ORDER_NEW_PRICE"]=fo_p
transaction["FIRST_ORDER_NEW_QUANTITY"]=tostring(fo_q)
transaction["MODE"]=tostring(mode)
elseif mode==2 then
if fo_q==nil or fo_q==0 then
return nil,"QL.moveOrder(): Mode=2. First Order Quantity can`t be nil or zero!"
end
if so_number~=nil and so_p~=nil and so_q>0 then
transaction["SECOND_ORDER_NUMBER"]=tostring(so_number)
transaction["SECOND_ORDER_NEW_PRICE"]=so_p
transaction["SECOND_ORDER_NEW_QUANTITY"]=tostring(so_q)
end
transaction["FIRST_ORDER_NUMBER"]=tostring(fo_number)
transaction["FIRST_ORDER_NEW_PRICE"]=fo_p
transaction["FIRST_ORDER_NEW_QUANTITY"]=tostring(fo_q)
transaction["MODE"]=tostring(mode)
else
return nil,"QL.moveOrder(): Mode out of range! mode can be from {0,1,2}"
end
local trans_id=random_max()
local order=getRowFromTable("orders",ordernumberfieldname,fo_number)
if order==nil then
return nil,"QL.moveOrderFO(): Can`t find order_number="..fo_number.." in orders table!"
end
transaction["TRANS_ID"]=tostring(trans_id)
transaction["CLASSCODE"]=order.class_code
transaction["SECCODE"]=order[securityfiledname]
transaction["ACTION"]="MOVE_ORDERS"
--toLog("move.txt",transaction)
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.moveOrderFO():"..res
else
return trans_id, "QL.moveOrderFO(): Move order sended sucesfully. Mode="..mode.." FONumber="..fo_number.." FOPrice="..fo_p
end
end
function sendRPS(class,security,direction,price,volume,account,client_code,partner)
-- функция отправки заявки на внебиржевую сделку
if (class==nil or security==nil or direction==nil or price==nil or volume==nil or account==nil or partner==nil) then
return nil,"QL.sendRPS(): Can`t send order. Nil parameters."
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_NEG_DEAL",
["CLASSCODE"]=class,
["SECCODE"]=security,
["OPERATION"]=direction,
["QUANTITY"]=volume,
["PRICE"]=price,
["ACCOUNT"]=account,
["PARTNER"]=partner,
["SETTLE_CODE"]="B0"
}
if client_code==nil then
transaction.client_code=account
else
transaction.client_code=client_code
end
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendRPS():"..res
else
return trans_id, "QL.sendRPS(): RPS order sended sucesfully. Class="..class.." Sec="..security.." Dir="..direction.." Price="..price.." Vol="..volume.." Acc="..account.." Partner="..partner.." Trans_id="..trans_id
end
end
function sendReportOnRPS(class,operation,key)
-- отправка отчета по сделки для исполнения
if(class==nil or operation==nil or key==nil) then
return nil,"QL.sendRPS(): Can`t send order. Nil parameters."
end
--local trans_id=tostring(math.ceil(os.clock()))..tostring(math.random(os.clock()))
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="NEW_REPORT",
["CLASSCODE"]=class,
["NEG_TRADE_OPERATION"]=operation,
["NEG_TRADE_NUMBER"]=key
}
local res=sendTransaction(transaction)
if res~="" then
return nil, "QL.sendReportOnRPS():"..res
else
return trans_id, "QL.sendReportOnRPS(): ReportOnRPS order sended sucesfully. Class="..class.." Oper="..operation.." Key="..key.." Trans_id="..trans_id
end
end
function killOrder(orderkey,security,class)
-- функция отмены лимитированной заявки по номеру
-- принимает минимум 1 парамер
-- ВАЖНО! Данная функция не гарантирует снятие заявки
-- Возвращает сообщение сервера в случае ошибки выявленной сервером Квик либо строку с информацией о транзакции
if orderkey==nil or tonumber(orderkey)==0 then
return nil,"QL.killOrder(): Can`t kill order. OrderKey nil or zero"
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="KILL_ORDER",
["ORDER_KEY"]=tostring(orderkey)
}
if security then
transaction.seccode=security
transaction.classcode=class or getSecurityInfo("",security).class_code
else
local order=getRowFromTable("orders",ordernumberfieldname,orderkey)
if order==nil then return nil,"QL.killOrder(): Can`t kill order. No such order in Orders table." end
transaction.classcode=order.class_code
transaction.seccode=order[securityfiledname]
end
--toLog("ko.txt",transaction)
local res=sendTransaction(transaction)
if res~="" then
return nil,"QL.killOrder(): "..res
else
return trans_id,"QL.killOrder(): Limit order kill sended. Class="..transaction.classcode.." Sec="..transaction.seccode.." Key="..orderkey.." Trans_id="..trans_id
end
end
function killStopOrder(orderkey,security,class)
-- функция отмены стоп-заявки по номеру
-- принимает минимум 1 парамер
-- ВАЖНО! Данная функция не гарантирует снятие заявки
-- Возвращает сообщение сервера в случае ошибки выявленной сервером Квик либо строку с информацией о транзакции
if orderkey==nil or tonumber(orderkey)==0 then
return nil,"QL.killStopOrder(): Can`t kill order. OrderKey nil or zero"
end
local trans_id=random_max()
local transaction={
["TRANS_ID"]=tostring(trans_id),
["ACTION"]="KILL_STOP_ORDER",
["STOP_ORDER_KEY"]=tostring(orderkey)
}
if security==nil or class==nil then
local order=getRowFromTable("stop_orders",ordernumberfieldname,orderkey)
if order==nil then return nil,"QL.killStopOrder(): Can`t kill order. No such order in StopOrders table." end
transaction.classcode=order.class_code
transaction.seccode=order[securityfiledname]
else
transaction.seccode=security
transaction.classcode=class
end
--toLog("ko.txt",transaction)
if string_find(FUT_OPT_CLASSES,transaction.classcode)~=nil then transaction['BASE_CONTRACT']=getParamEx(transaction.classcode,transaction.seccode,'optionbase').param_image end
local res=sendTransaction(transaction)
if res~="" then
return nil,"QL.killStopOrder(): "..res
else
return trans_id,"QL.killStopOrder(): Stop-order kill sended. Class="..transaction.classcode.." Sec="..transaction.seccode.." Key="..orderkey.." Trans_id="..trans_id
end
end
function killAllOrders(table_mask)
-- данная функция отправит транзакции на отмену АКТИВНЫХ заявок соответствующим фильтру указанному как входящий параметр table_mask
-- список всех возможных параметров : ACCOUNT,CLASSCODE,SECCODE,OPERATION,CLIENT_CODE,COMMENT
-- если вызвать функцию с параметром nil - снимутся ВСЕ активные заявки
local i,key,val,result_num=0,0,0,0
local tokill=true
local row={}
local result_str=""
for i=0,getNumberOf("orders"),1 do
row=getItem("orders",i)
tokill=false
--toLog(log,"Row "..i.." onum="..row.order_num)
if orderflags2table(row.flags).active then
tokill=true
--toLog(log,"acitve")
if table_mask~=nil then
for key,val in pairs(table_mask) do
--toLog(log,"check key="..key.." val="..val)
--toLog(log,"strlowe="..string.lower(key).." row="..row[string.lower(key)].." tbl="..val)
if string_lower(key)=='comment' then
if string_find(string_lower(row.brokerref),string_lower(val))==nil then tokill=false break end
else
if row[string_lower(key)]~=val then tokill=false break end
end
end
end
end
if tokill then
--toLog(log,"kill onum"..row.order_num)
res,ms=killOrder(tostring(row.order_num),row[securityfiledname],row.class_code)
result_num=result_num+1
--toLog(log,ms)
if res then
result_str=result_str..row.order_num..","
else
result_str=result_str.."!"..row.order_num..","
end
end
end
return true,"QL.killAllOrders(): Sended "..result_num.." transactions. order_nums:"..result_str
end
function killAllStopOrders(table_mask)
-- данная функция отправит транзакции на отмену АКТИВНЫХ стоп-заявок соответствующим фильтру указанному как входящий параметр table_mask
-- список всех возможных параметров : ACCOUNT,CLASSCODE,SECCODE,OPERATION,CLIENT_CODE,COMMENT
-- если вызвать функцию с параметром nil - снимутся ВСЕ активные заявки
local i,key,val,result_num=0,0,0,0
local tokill=true
local row={}
local result_str=""
for i=0,getNumberOf("stop_orders"),1 do
row=getItem("stop_orders",i)
tokill=false
--toLog(log,"Row "..i.." onum="..row.order_num)
if stoporderflags2table(row.flags).active then
tokill=true
--toLog(log,"acitve")
if table_mask~=nil then
for key,val in pairs(table_mask) do
--toLog(log,"check key="..key.." val="..val)
--toLog(log,"strlowe="..string.lower(key).." row="..row[string.lower(key)].." tbl="..val)
if string_lower(key)=='comment' then
if string_find(string_lower(row.brokerref),string_lower(val))==nil then tokill=false break end
else
if row[string_lower(key)]~=val then tokill=false break end
end
end
end
end
if tokill then
--toLog(log,"kill onum"..row.order_num)
res,ms=killStopOrder(tostring(row.order_num),row[securityfiledname],row.class_code)
result_num=result_num+1
--toLog(log,ms)
if res then
result_str=result_str..row.order_num..","
else
result_str=result_str.."!"..row.order_num..","
end
end
end
return true,"QL.killAllStopOrders(): Sended "..result_num.." transactions. order_nums:"..result_str
end
function getPosition(security,account,limit_kind,class_code)
--возвращает чистую позицию по инструменту и цену преобретения
-- для срочного рынка передаем номер счета, для спот-рынка код-клиента
-- также для спот-рынка есть возможность указать тип лимита (ПО УМОЛЧАНИЮ 0!)
if class_code==nil then class_code=getSecurityInfo("",security).class_code end
if string_find(FUT_OPT_CLASSES,class_code)~=nil then
--futures
for i=0,getNumberOf("futures_client_holding") do
local row=getItem("futures_client_holding",i)
if row~=nil and row[securityfiledname]==security and row.trdaccid==account then
if row.totalnet==nil then
return 0,0
else
return tonumber(row.totalnet),tonumber(getParamEx(class_code,security,'last').param_value)
end
end
end
else
-- spot
--toLog(log,'posnum='..getNumberOf("depo_limits"))
for i=0,getNumberOf("depo_limits") do
local row=getItem("depo_limits",i)
--toLog(log,row)
if row~=nil and row[securityfiledname]==security and row.client_code==account and (row.limit_kind==limit_kind or 0) then
if row.currentbal==nil then
return 0,0
else
return tonumber(row.currentbal), tonumber(row.awg_position_price)
end
end
end
end
return 0
end
--[[
Quik Table class QTable
-- only for Quik version 6.6+
]]
QTable ={}
QTable.__index = QTable
function QTable:new()
-- Создать и инициализировать экземпляр таблицы QTable
if VERSIONLESS660118 then message("QTable: Quik Tables available ONLY in Quik 6.6+ version!",1) return nil end
local t_id = AllocTable()
if t_id then
q_table = {}
setmetatable(q_table, QTable)
q_table.t_id=t_id
q_table.caption = ""
q_table.created = false
q_table.curr_col=0
q_table.curr_line=0
--таблица с описанием параметров столбцов
q_table.columns={}
--таблица с данными столбцов
q_table.data={}
return q_table
else
return nil
end
end
function QTable:Show()
-- отобразить в терминале окно с созданной таблицей
CreateWindow(self.t_id)
if self.caption ~="" then
-- задать заголовок для окна
SetWindowCaption(self.t_id, tostring(self.caption))
end
self.created = true
end
function QTable:IsClosed()
--если окно с таблицей закрыто, возвращает «true»
return IsWindowClosed(self.t_id)
end
function QTable:delete()
-- удалить таблицу
return DestroyTable(self.t_id)
end
function QTable:GetCaption()
-- возвращает строку, содержащую заголовок таблицы
if not IsWindowClosed(self.t_id) then
self.caption = GetWindowCaption(self.t_id)
end
return self.caption
end
function QTable:SetCaption(s)
-- Задать заголовок таблицы (без параметров восстанавливает его, если был изменен извне библиотеки)
self.caption = s or self.caption
if IsWindowClosed(self.t_id) then return nil end
return SetWindowCaption(self.t_id, tostring(self.caption))
end
function QTable:AddColumn(name, c_type, width, ff )
-- Добавить описание столбца name типа C_type в таблицу
-- ff – функция форматирования данных для отображения
local col_desc={}
self.curr_col=self.curr_col+1
col_desc.c_type = c_type
col_desc.format_function = ff
col_desc.id = self.curr_col
self.columns[name] = col_desc
-- name используется в качестве заголовка таблицы
return AddColumn(self.t_id, self.curr_col, name, true, c_type, width)
end
function QTable:Clear()
-- очистить таблицу
self.data={}
self.curr_line=0
return Clear(self.t_id)
end
function QTable:SetValue(row, col_name, data, formatted)
-- Установить значение в ячейке
local col_ind = self.columns[col_name].id or nil
if col_ind == nil then
return false
end
local col_type = self.columns[col_name].c_type
if self.data[row][col_ind]==data then return true end
self.data[row][col_ind]=data
local col_type = self.columns[col_name].c_type
-- если для числового столбца дано НЕчисловое значение, то применяем к нему tonumber
if type(data) ~= "number" and (col_type==QTABLE_INT_TYPE or col_type==QTABLE_DOUBLE_TYPE or col_type==QTABLE_INT64_TYPE) then
data = tonumber(data) or 0
end
-- если для НЕстрокового значения уже дан отформатированный вариант, то сначала используется он
if formatted and col_type~=QTABLE_STRING_TYPE and col_type~=QTABLE_CACHED_STRING_TYPE then
return SetCell(self.t_id, row, col_ind, formatted, data)
end
-- если для столбца задана функция форматирования, то она используется
local ff = self.columns[col_name].format_function
if type(ff) == "function" then
-- в качестве строкового представления используется