-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathserver.dfm
1830 lines (1828 loc) · 48.6 KB
/
server.dfm
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
object Form1: TForm1
Left = 20
Top = 20
AlphaBlend = True
AutoSize = True
BiDiMode = bdLeftToRight
BorderStyle = bsSingle
Caption = 'iHaidra-Arbitrage Trading Stratige'
ClientHeight = 446
ClientWidth = 700
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
ParentBiDiMode = False
Position = poDefaultSizeOnly
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object timer: TLabel
Left = 206
Top = 293
Width = 30
Height = 13
Caption = '----------'
end
object Label70: TLabel
Left = 280
Top = 136
Width = 38
Height = 13
Caption = 'Label70'
end
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 700
Height = 446
Hint = #1575#1591#1608#1604' '#1608#1602#1578' '#1605#1605#1603#1606' '#1604#1603#1604' '#1589#1601#1602#1577' '#1576#1579#1608#1575#1606#1610' '
ActivePage = TabSheet3
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'DashBoard'
object consol: TLabel
Left = 324
Top = 398
Width = 34
Height = 15
Caption = 'Consol'
Color = clCream
Font.Charset = ANSI_CHARSET
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Time63: TLabel
Left = 586
Top = 0
Width = 51
Height = 13
Caption = '-----------------'
end
object Panel5: TPanel
Left = 3
Top = 274
Width = 315
Height = 143
TabOrder = 0
object Label20: TLabel
Left = 0
Top = 0
Width = 107
Height = 21
Caption = 'Price Difference'
Font.Charset = JOHAB_CHARSET
Font.Color = clHotLight
Font.Height = -16
Font.Name = 'Terminal'
Font.Style = []
ParentFont = False
end
object Label21: TLabel
Left = 1
Top = 46
Width = 40
Height = 13
Caption = 'Ask Dif :'
end
object Label22: TLabel
Left = 1
Top = 65
Width = 37
Height = 13
Caption = 'Bid Dif :'
end
object Label23: TLabel
Left = 1
Top = 84
Width = 54
Height = 13
Caption = 'All Spread :'
end
object Label24: TLabel
Left = 1
Top = 103
Width = 42
Height = 13
Caption = 'Max Dif :'
end
object Label25: TLabel
Left = 1
Top = 122
Width = 39
Height = 13
Caption = 'Min Dif :'
end
object Label26: TLabel
Left = 75
Top = 46
Width = 6
Height = 13
Caption = '0'
end
object Label27: TLabel
Left = 75
Top = 65
Width = 6
Height = 13
Caption = '0'
end
object Label28: TLabel
Left = 75
Top = 84
Width = 6
Height = 13
Caption = '0'
end
object Label29: TLabel
Left = 75
Top = 103
Width = 6
Height = 13
Caption = '0'
end
object Label30: TLabel
Left = 75
Top = 122
Width = 6
Height = 13
Caption = '0'
end
object Time5: TLabel
Left = 202
Top = 8
Width = 84
Height = 13
Caption = '2020-05-15 14:44'
end
object Label47: TLabel
Left = 130
Top = 8
Width = 58
Height = 13
Caption = 'Local Time :'
end
object Label55: TLabel
Left = 130
Top = 59
Width = 44
Height = 13
Caption = 'All Profit :'
end
object profitAll: TLabel
Left = 202
Top = 59
Width = 24
Height = 13
Caption = '0000'
end
object Label56: TLabel
Left = 128
Top = 32
Width = 60
Height = 13
Caption = 'Local Speed'
end
object time30: TLabel
Left = 202
Top = 32
Width = 24
Height = 13
Caption = '0000'
end
object Button2: TButton
Left = 0
Top = 20
Width = 113
Height = 20
HelpType = htKeyword
Caption = 'Refresh'
TabOrder = 0
OnClick = Button2Click
end
object Panel3: TPanel
Left = 103
Top = 46
Width = 10
Height = 93
Color = clGray
Font.Charset = DEFAULT_CHARSET
Font.Color = clMenuHighlight
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentBackground = False
ParentFont = False
TabOrder = 1
end
end
object Panel1: TPanel
Left = 3
Top = 47
Width = 152
Height = 221
TabOrder = 1
object Label1: TLabel
Left = 0
Top = 3
Width = 60
Height = 13
Caption = 'Fast Broker :'
end
object Label4: TLabel
Left = 10
Top = 32
Width = 40
Height = 13
Caption = 'Symbol :'
end
object Label3: TLabel
Left = 0
Top = 100
Width = 37
Height = 13
Caption = 'Speed :'
end
object fastD: TLabel
Left = 0
Top = 120
Width = 41
Height = 13
Caption = 'Digits : 0'
end
object fastT: TLabel
Left = 80
Top = 100
Width = 24
Height = 13
Caption = '0000'
Color = clHotLight
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label7: TLabel
Left = 0
Top = 140
Width = 25
Height = 15
Caption = 'Ask :'
Color = clGreen
Font.Charset = ANSI_CHARSET
Font.Color = clGreen
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label8: TLabel
Left = 0
Top = 160
Width = 22
Height = 15
Caption = 'Bid :'
Font.Charset = ANSI_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object ask1: TLabel
Left = 80
Top = 140
Width = 28
Height = 15
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clGreen
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object bid1: TLabel
Left = 80
Top = 160
Width = 28
Height = 15
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object Label32: TLabel
Left = 0
Top = 180
Width = 74
Height = 15
Caption = 'Spread '
Font.Charset = ANSI_CHARSET
Font.Color = clGray
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object fspread: TLabel
Left = 80
Top = 180
Width = 28
Height = 15
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clGray
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object Label43: TLabel
Left = 0
Top = 80
Width = 29
Height = 13
Caption = 'Time :'
end
object Label44: TLabel
Left = 0
Top = 200
Width = 30
Height = 13
Caption = 'Profit :'
end
object timeFast: TLabel
Left = 43
Top = 81
Width = 24
Height = 13
Hint = #1610#1578#1594#1610#1585' '#1575#1604#1608#1602#1578' '#1604#1603#1604' '#1578#1594#1610#1585' '#1601#1610' '#1575#1604#1587#1593#1585
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Roboto Bk'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object profitFast: TLabel
Left = 80
Top = 200
Width = 24
Height = 13
Caption = '0000'
end
object Label11: TLabel
Left = 0
Top = 60
Width = 50
Height = 13
Caption = 'Company :'
end
object Label50: TLabel
Left = 80
Top = 60
Width = 26
Height = 13
Caption = 'None'
end
object Label51: TLabel
Left = 0
Top = 48
Width = 156
Height = 13
Caption = '----------------------------------------------------'
end
object fastLogin: TComboBox
Left = 62
Top = 0
Width = 90
Height = 21
Style = csDropDownList
ItemIndex = 0
TabOrder = 0
TabStop = False
Text = 'No Login...'
OnChange = fastLoginChange
Items.Strings = (
'No Login...')
end
object fastSymbol: TComboBox
Left = 63
Top = 27
Width = 89
Height = 22
Style = csDropDownList
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
ItemIndex = 0
ParentFont = False
TabOrder = 1
Text = 'Fast Symbol'
OnChange = fastSymbolChange
Items.Strings = (
'Fast Symbol')
end
object Panel7: TPanel
Left = 160
Top = 56
Width = 185
Height = 41
Caption = 'Panel7'
TabOrder = 2
end
end
object Panel2: TPanel
Left = 161
Top = 47
Width = 155
Height = 221
TabOrder = 2
object Label2: TLabel
Left = 0
Top = 3
Width = 63
Height = 13
Caption = 'Slow Broker :'
end
object Label5: TLabel
Left = 10
Top = 32
Width = 40
Height = 13
Caption = 'Symbol :'
end
object Label6: TLabel
Left = 0
Top = 100
Width = 37
Height = 13
Caption = 'Speed :'
end
object slowD: TLabel
Left = 0
Top = 120
Width = 41
Height = 13
Caption = 'Digits : 0'
end
object slowT: TLabel
Left = 80
Top = 100
Width = 24
Height = 13
Caption = '0000'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
end
object Label9: TLabel
Left = 0
Top = 140
Width = 25
Height = 15
Caption = 'Ask :'
Color = clGreen
Font.Charset = ANSI_CHARSET
Font.Color = clGreen
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label10: TLabel
Left = 0
Top = 160
Width = 22
Height = 15
Caption = 'Bid :'
Font.Charset = ANSI_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object ask2: TLabel
Left = 80
Top = 140
Width = 28
Height = 15
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clGreen
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object bid2: TLabel
Left = 80
Top = 160
Width = 28
Height = 15
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clMaroon
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object Label31: TLabel
Left = 0
Top = 180
Width = 35
Height = 15
Caption = 'Spread'
Font.Charset = ANSI_CHARSET
Font.Color = clGray
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object sspread: TLabel
Left = 80
Top = 180
Width = 7
Height = 15
Caption = '0'
Font.Charset = ANSI_CHARSET
Font.Color = clGray
Font.Height = -13
Font.Name = 'Roboto Cn'
Font.Style = []
ParentFont = False
end
object Label48: TLabel
Left = 0
Top = 80
Width = 32
Height = 13
Caption = 'Time : '
end
object timeSlow: TLabel
Left = 43
Top = 81
Width = 24
Height = 13
Hint = #1610#1578#1594#1610#1585' '#1575#1604#1608#1602#1578' '#1604#1603#1604' '#1578#1594#1610#1585' '#1601#1610' '#1575#1604#1587#1593#1585
Caption = '0000'
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Roboto Bk'
Font.Style = []
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object profitSlow: TLabel
Left = 80
Top = 200
Width = 24
Height = 13
Caption = '0000'
end
object Label49: TLabel
Left = 0
Top = 200
Width = 30
Height = 13
Caption = 'Profit :'
end
object Label12: TLabel
Left = 0
Top = 60
Width = 50
Height = 13
Caption = 'Company :'
end
object Label52: TLabel
Left = -229
Top = 48
Width = 156
Height = 13
Caption = '----------------------------------------------------'
end
object Label53: TLabel
Left = 64
Top = 60
Width = 26
Height = 13
Caption = 'None'
end
object Label54: TLabel
Left = 0
Top = 48
Width = 159
Height = 13
Caption = '-----------------------------------------------------'
end
object slowLogin: TComboBox
Left = 64
Top = 0
Width = 90
Height = 21
Style = csDropDownList
ItemIndex = 0
TabOrder = 0
Text = 'No Login...'
OnChange = slowLoginChange
Items.Strings = (
'No Login...')
end
object slowSymbol: TComboBox
Left = 64
Top = 27
Width = 90
Height = 22
Style = csDropDownList
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
ItemIndex = 0
ParentFont = False
TabOrder = 1
Text = 'Slow Symbol'
OnChange = slowSymbolChange
Items.Strings = (
'Slow Symbol')
end
end
object port: TEdit
Left = 263
Top = 20
Width = 41
Height = 21
TabOrder = 3
Text = '30'
end
object b1: TButton
Left = 168
Top = 20
Width = 89
Height = 22
Caption = 'Connect To Port'
TabOrder = 4
OnClick = b1Click
end
object GroupBox1: TGroupBox
Left = 322
Top = 43
Width = 367
Height = 137
Caption = ' iHaidra Options.... '
TabOrder = 5
object Label46: TLabel
Left = 328
Top = 51
Width = 36
Height = 13
Caption = 'Visibility'
end
object TrackBar1: TTrackBar
Left = 264
Top = 48
Width = 65
Height = 17
Hint = #1578#1594#1610#1610#1585' '#1575#1604#1588#1601#1575#1601#1610#1577' '#1604#1585#1572#1610#1577' '#1575#1608#1590#1581' '#1582#1604#1601' '#1575#1604#1576#1585#1606#1575#1605#1580
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnChange = TrackBar1Change
end
object kill: TCheckBox
Left = 270
Top = 28
Width = 94
Height = 17
Hint = #1575#1610#1602#1575#1601' '#1575#1604#1578#1593#1583#1610#1604#1575#1578' '#1604#1578#1601#1575#1583#1610' '#1575#1604#1582#1591#1574
Caption = 'Kill All Modify'
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = killClick
end
object Panel6: TPanel
Left = 269
Top = 8
Width = 95
Height = 16
Hint = #1578#1594#1610#1610#1585' '#1575#1604#1579#1610#1605
ParentShowHint = False
ShowHint = True
TabOrder = 2
object RadioButton5: TRadioButton
Left = 60
Top = 1
Width = 14
Height = 16
Color = clMenuHighlight
ParentColor = False
TabOrder = 0
OnClick = RadioButton5Click
end
object RadioButton6: TRadioButton
Left = 0
Top = 0
Width = 14
Height = 17
Color = clMoneyGreen
ParentColor = False
TabOrder = 1
OnClick = RadioButton6Click
end
object RadioButton7: TRadioButton
Left = 40
Top = 0
Width = 14
Height = 17
Color = clOlive
ParentColor = False
TabOrder = 2
OnClick = RadioButton7Click
end
object RadioButton8: TRadioButton
Left = 20
Top = 0
Width = 14
Height = 17
Color = clTeal
ParentColor = False
TabOrder = 3
OnClick = RadioButton8Click
end
object RadioButton9: TRadioButton
Left = 80
Top = 0
Width = 14
Height = 17
TabOrder = 4
OnClick = RadioButton9Click
end
end
object Panel10: TPanel
Left = 16
Top = 24
Width = 121
Height = 110
Enabled = False
TabOrder = 3
object CheckBox1: TCheckBox
Left = 0
Top = 0
Width = 121
Height = 17
Caption = 'Active Saving Mode'
TabOrder = 0
end
object CheckBox2: TCheckBox
Left = 0
Top = 23
Width = 97
Height = 17
Caption = 'Active First Inputs'
TabOrder = 1
end
object CheckBox3: TCheckBox
Left = 0
Top = 46
Width = 97
Height = 17
Caption = 'The Second Input'
TabOrder = 2
end
object CheckBox4: TCheckBox
Left = 0
Top = 69
Width = 97
Height = 17
Caption = 'The Third Input'
TabOrder = 3
end
object CheckBox5: TCheckBox
Left = 0
Top = 92
Width = 97
Height = 17
Caption = 'The Fourth Input'
TabOrder = 4
end
end
end
object GroupBox2: TGroupBox
Left = 322
Top = 186
Width = 363
Height = 82
Caption = ' Trading Options ... '
TabOrder = 6
end
object GroupBox3: TGroupBox
Left = 324
Top = 274
Width = 361
Height = 118
BiDiMode = bdRightToLeft
Caption = #1605#1584#1603#1585#1577
ParentBiDiMode = False
TabOrder = 7
object Memo1: TMemo
Left = 14
Top = 16
Width = 331
Height = 99
BiDiMode = bdRightToLeft
Lines.Strings = (
#1607#1575#1584#1575' '#1575#1604#1606#1590#1575#1605' '#1602#1610#1583' '#1575#1604#1578#1591#1608#1610#1585' '#1605#1603#1608#1606' '#1605#1606' '#1576#1585#1606#1575#1605#1580' '#1576#1604#1594#1577' C# '#1608' C++ - '#1576#1587#1578#1582#1583#1575 +
#1605' '
#1608#1575#1580#1607#1577' Embarcadero Delphi - '#1608' '#1575#1603#1587#1576#1585#1578' '#1604#1604#1575#1578#1589#1575#1604' '#1576#1600#1600#1600' MetaTrader 5 ' +
#1608' '
#1605#1587#1578#1602#1576#1604#1575' '#1580#1605#1610#1593' '#1575#1604#1605#1606#1589#1575#1578
'- '#1608' '#1587#1603#1585#1576#1578' javascript , HTML '#1604#1575#1582#1578#1576#1575#1585' '#1575#1604#1575#1587#1578#1585#1575#1578#1580#1610#1575#1578' BACKTESTING'
#1604#1604#1575#1578#1589#1575#1604' '
'fb.com/Haidra27'
't.me/Haidra27')
ParentBiDiMode = False
TabOrder = 0
end
end
end
object TabSheet2: TTabSheet
Caption = 'Saving For BackTest'
ImageIndex = 1
object Time60: TLabel
Left = 586
Top = 0
Width = 51
Height = 13
Caption = '-----------------'
end
object Panel4: TPanel
Left = 96
Top = 26
Width = 553
Height = 389
TabOrder = 0
object Label13: TLabel
Left = 16
Top = 141
Width = 25
Height = 13
Caption = 'iTime'
end
object Label14: TLabel
Left = 47
Top = 141
Width = 38
Height = 13
Caption = 'FastAsk'
end
object Label15: TLabel
Left = 91
Top = 141
Width = 35
Height = 13
Caption = 'FastBid'
end
object Label16: TLabel
Left = 132
Top = 141
Width = 41
Height = 13
Caption = 'SlowAsk'
end
object Label17: TLabel
Left = 179
Top = 141
Width = 38
Height = 13
Caption = 'SlowBid'
end
object Label18: TLabel
Left = 239
Top = 5
Width = 61
Height = 13
Caption = 'Name Of File'
end
object Label45: TLabel
Left = 260
Top = 141
Width = 53
Height = 13
Caption = '-->Time <---'
end
object Label69: TLabel
Left = 16
Top = 112
Width = 43
Height = 13
Caption = 'Ask Dif : '
end
object Label75: TLabel
Left = 64
Top = 112
Width = 24
Height = 13
Caption = '0000'
end
object data: TMemo
Left = 8
Top = 160
Width = 513
Height = 225
Color = clInfoBk
Enabled = False
Font.Charset = ANSI_CHARSET
Font.Color = clBlue
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
ScrollBars = ssVertical
TabOrder = 0
end
object Button1: TButton
Left = 210
Top = 79
Width = 47
Height = 22
Caption = 'Save'
TabOrder = 1
OnClick = Button1Click
end
object Edit1: TEdit
Left = 330
Top = 2
Width = 203
Height = 21
TabOrder = 2
Text = 'EURUSD_Fbs_IC'
end
object RadioButton4: TRadioButton
Left = 16
Top = 4
Width = 46
Height = 17
Caption = 'OF'
ParentShowHint = False