-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathuSahamBetaForecast.dfm
2482 lines (2482 loc) · 139 KB
/
uSahamBetaForecast.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 MainFormForecast: TMainFormForecast
Left = -49
Top = -55
BorderStyle = bsNone
Caption = 'APLIKASI PERAMALAN SAHAM'
ClientHeight = 768
ClientWidth = 1366
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Icon.Data = {
0000010001002020000001002000A81000001600000028000000200000004000
0000010020000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000F6B1624AF6B1629CF6B162D8F6B162C6F6B162B6F6B162EEF6B1
62EAF6B162D0F6B162DCF6B162C4F6B16298F6B1628EF6B1624CF6B1620C0000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B16224F6B162A2F6B1
6298F6B16290F6B162F6F6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FAF6B1
62A4F6B162060000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000F6B1620CF6B162F0F6B162FFF6B1
62FFF6B162FFF6B162C2F6B162FAF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B1628CF6B1620400000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B16286F6B162D2F6B1
62F8F6B162FFF6B162F8F6B16258F6B162CAF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FCF6B1620E00000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000F6B1
6244F6B162FFF6B162FFF6B162A4F6B16206F6B1622CF6B1629AF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162F2F6B1620E00000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000F6B1
620AF6B162FCF6B162FFF6B162B0000000000000000000000000F6B162D4F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FCF6B1626A0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000F6B162F0F6B162FFF6B162B4000000000000000000000000F6B162AAF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
625E000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000F6B162EAF6B162FFF6B162BA0000000000000000F6B16200F6B1627EF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
6236000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000F6B162EAF6B162FFF6B162C600000000F6B16224F6B162C2F6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162F4F6B1
6208000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000F6B162ECF6B162FFF6B162D4F6B16248F6B162F0F6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162A60000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000F6B1
6210F6B162FCF6B162FFF6B162FAF6B162FCF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1623E0000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000F6B1
6264F6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162C2000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B1620AF6B1
62E6F6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162F4F6B1622A000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B16264F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162F2F6B1624800000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B162BEF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162EEF6B162480000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B16216F6B162F6F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162FFF6B162D2F6B16230000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B1621AF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B162E8F6B1621600000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B1622EF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62FFF6B1627A0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B16216F6B162FCF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1
62F6F6B1621A0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B162D4F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FAF6B1
6250000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B16272F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162860000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B1625EF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162E2F6B162140000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B16260F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162880000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B16290F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162FFF6B162A2F6B162060000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B162CEF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FFF6B1627E00000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B16202F6B162F8F6B1
62FFF6B162FFF6B162FFF6B162FFF6B162FAF6B1621200000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B16216F6B162FFF6B1
62FFF6B162FFF6B162FFF6B162FFF6B162AA0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B1624AF6B162FFF6B1
62FFF6B162FFF6B162FFF6B162F0F6B162220000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000F6B162AEF6B162D2F6B1
62FFF6B162FFF6B162CAF6B1623A000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000F6B1620CF6B162C4F6B1627EF6B1
62FFF6B162E0F6B1620600000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B16282F6B1
62FFF6B162760000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000F6B16216F6B1
62BAF6B162200000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFE0
03FFFE00007FFC00003FFC10003FFF8C003FFF8E007FFF8E00FFFF8F00FFFF8C
00FFFF8800FFFF8001FFFF8001FFFF0003FFFF0007FFFE000FFFFE001FFFFE00
3FFFFE007FFFFE007FFFFE00FFFFFF00FFFFFF01FFFFFF00FFFFFE01FFFFFE07
FFFFFE07FFFFFE07FFFFFE0FFFFFFC1FFFFFFD3FFFFFFE7FFFFFFF7FFFFF}
KeyPreview = True
OldCreateOrder = False
Position = poDesktopCenter
ShowHint = True
WindowState = wsMaximized
OnActivate = actClearExecute
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
DesignSize = (
1366
768)
PixelsPerInch = 96
TextHeight = 13
object homePanel: TPanel
Left = 50
Top = 43
Width = 1316
Height = 725
Align = alClient
BevelOuter = bvNone
Color = 14258219
ParentBackground = False
TabOrder = 2
DesignSize = (
1316
725)
object lbHome: TLabel
Left = 0
Top = 11
Width = 1314
Height = 59
Alignment = taCenter
Anchors = [akLeft, akTop, akRight, akBottom]
AutoSize = False
Caption = 'FORECAST STOCKS DATA'
Color = 14258219
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -32
Font.Name = 'Segoe UI'
Font.Style = []
ParentColor = False
ParentFont = False
ExplicitWidth = 1297
ExplicitHeight = 49
end
object lblExistedData: TLabel
Left = 25
Top = 134
Width = 210
Height = 17
Caption = 'EXISTED COMPANY STOCKS DATA'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label3: TLabel
Left = 315
Top = 134
Width = 60
Height = 17
Caption = 'VARIABEL'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label4: TLabel
Left = 544
Top = 134
Width = 163
Height = 17
Caption = 'RANGE TRAPEZOID FUZZY'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label5: TLabel
Left = 841
Top = 134
Width = 153
Height = 17
Caption = 'MEMBERSHIP FUNCTION'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label6: TLabel
Left = 1127
Top = 134
Width = 177
Height = 17
Caption = 'FUZZY LOGIC RELATIONSHIP'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label7: TLabel
Left = 25
Top = 412
Width = 63
Height = 17
Caption = 'FLR STATE'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label8: TLabel
Left = 306
Top = 412
Width = 113
Height = 17
Caption = 'FORECAST RESULT'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label9: TLabel
Left = 645
Top = 412
Width = 160
Height = 17
Caption = 'CHART FORECASTING FTS'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object Label10: TLabel
Left = 1120
Top = 412
Width = 111
Height = 17
Caption = 'ERROR MEASURES'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Segoe UI'
Font.Style = [fsBold, fsUnderline]
ParentFont = False
end
object StringGrid5: TStringGrid
Left = 48
Top = 464
Width = 229
Height = 249
ColCount = 2
RowCount = 1
FixedRows = 0
TabOrder = 13
Visible = False
end
object ListBox1: TListBox
Left = 25
Top = 435
Width = 200
Height = 265
ItemHeight = 13
TabOrder = 4
Visible = False
end
object ListBox2: TListBox
Left = 37
Top = 435
Width = 202
Height = 265
ItemHeight = 13
TabOrder = 5
Visible = False
end
object ListBox3: TListBox
Left = 48
Top = 435
Width = 242
Height = 265
ItemHeight = 13
TabOrder = 6
Visible = False
end
object ListBox6: TListBox
Left = 65
Top = 435
Width = 225
Height = 265
ItemHeight = 13
TabOrder = 9
Visible = False
end
object dbgForecastExisted: TDBGrid
Left = 25
Top = 157
Width = 281
Height = 221
DataSource = dm.DSForecast
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
Options = [dgTitles, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgTitleClick, dgTitleHotTrack]
ParentFont = False
TabOrder = 0
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -16
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Columns = <
item
Expanded = False
FieldName = 'Date'
Title.Alignment = taCenter
Width = 120
Visible = True
end
item
Expanded = False
FieldName = 'Price'
Title.Alignment = taCenter
Width = 120
Visible = True
end>
end
object CBForecastCompany: TComboBox
Left = 25
Top = 85
Width = 214
Height = 21
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
Sorted = True
TabOrder = 1
Text = '--Select Company To Forecast--'
OnChange = CBForecastCompanyChange
OnKeyPress = actKeyPressExecute
Items.Strings = (
'BBCA'
'BSDE'
'GGRM'
'INAF'
'TLKM')
end
object btnForecast: TButton
Left = 256
Top = 84
Width = 75
Height = 23
Caption = 'Forecast'
TabOrder = 2
OnClick = btnForecastClick
end
object btnReset: TButton
Left = 348
Top = 84
Width = 75
Height = 23
Caption = 'Reset'
Enabled = False
TabOrder = 3
OnClick = btnResetClick
end
object StringGrid2: TStringGrid
Left = 838
Top = 157
Width = 285
Height = 221
ColCount = 4
RowCount = 2
TabOrder = 10
end
object StringGrid1: TStringGrid
Left = 541
Top = 157
Width = 294
Height = 221
RowCount = 2
TabOrder = 14
end
object StringGrid3: TStringGrid
Left = 1126
Top = 157
Width = 185
Height = 221
ColCount = 3
FixedCols = 0
RowCount = 1
FixedRows = 0
TabOrder = 11
end
object ListBox4: TListBox
Left = 311
Top = 157
Width = 226
Height = 221
ItemHeight = 13
ScrollWidth = 100
TabOrder = 7
end
object ListBox5: TListBox
Left = 81
Top = 435
Width = 209
Height = 265
ItemHeight = 13
TabOrder = 8
Visible = False
end
object ListBox7: TListBox
Left = 96
Top = 435
Width = 194
Height = 265
ItemHeight = 13
TabOrder = 15
Visible = False
end
object DBGrid1: TDBGrid
Left = 304
Top = 435
Width = 330
Height = 249
DataSource = dm.DSHasil
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Options = [dgTitles, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgConfirmDelete, dgCancelOnExit, dgTitleClick, dgTitleHotTrack]
ParentFont = False
TabOrder = 17
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -15
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
Columns = <
item
Alignment = taCenter
Expanded = False
FieldName = 'nomor'
Title.Alignment = taCenter
Title.Caption = 'Nomor'
Width = 75
Visible = True
end
item
Alignment = taCenter
Expanded = False
FieldName = 'tanggal'
Title.Alignment = taCenter
Title.Caption = 'Tanggal'
Width = 75
Visible = True
end
item
Alignment = taCenter
Expanded = False
FieldName = 'data'
Title.Alignment = taCenter
Title.Caption = 'Data'
Width = 75
Visible = True
end
item
Alignment = taCenter
Expanded = False
FieldName = 'hasil'
Title.Alignment = taCenter
Title.Caption = 'Hasil'
Width = 75
Visible = True
end>
end
object Chart1: TChart
Left = 643
Top = 435
Width = 467
Height = 249
Legend.Alignment = laBottom
Title.Color = clBlack
Title.Font.Color = clBlack
Title.Font.Height = -13
Title.Font.Style = [fsBold]
Title.Text.Strings = (
'CHART FORECASTING FTS')
Title.VertMargin = 8
View3D = False
Color = clWhite
TabOrder = 18
DefaultCanvas = 'TGDIPlusCanvas'
PrintMargins = (
15
26
15
26)
ColorPaletteIndex = 13
object Series1: TLineSeries
Title = 'Data Aktual'
Brush.BackColor = clDefault
Pointer.InflateMargins = True
Pointer.Style = psRectangle
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object Series2: TLineSeries
Title = 'Hasil Peramalan'
Brush.BackColor = clDefault
Pointer.InflateMargins = True
Pointer.Style = psRectangle
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
end
object GroupBox1: TGroupBox
Left = 1118
Top = 435
Width = 193
Height = 249
Caption = 'FORECASTING ERROR'
Color = clWhite
ParentBackground = False
ParentColor = False
TabOrder = 19
object Label1: TLabel
Left = 16
Top = 102
Width = 27
Height = 13
Caption = 'MSE :'
Visible = False
end
object Label2: TLabel
Left = 16
Top = 31
Width = 37
Height = 13
Caption = 'MAPE : '
end
object Edit1: TEdit
Left = 16
Top = 131
Width = 169
Height = 24
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 0
Visible = False
end
object Edit2: TEdit
Left = 16
Top = 60
Width = 169
Height = 24
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 1
end
end
object btnSave: TButton
Left = 440
Top = 84
Width = 75
Height = 23
Caption = 'Save'
Enabled = False
TabOrder = 20
OnClick = btnSaveClick
end
object Button1: TButton
Left = 528
Top = 83
Width = 75
Height = 25
Action = actCopy
TabOrder = 21
Visible = False
end
object StringGrid6: TStringGrid
Left = 562
Top = 466
Width = 270
Height = 249
ColCount = 2
DefaultColWidth = 125
FixedCols = 0
RowCount = 2
TabOrder = 22
Visible = False
end
object StringGrid7: TStringGrid
Left = 838
Top = 466
Width = 270
Height = 249
ColCount = 2
DefaultColWidth = 125
FixedCols = 0
RowCount = 2
TabOrder = 23
Visible = False
end
object ListBox8: TListBox
Left = 120
Top = 435
Width = 170
Height = 265
ItemHeight = 13
TabOrder = 16
Visible = False
end
object StringGrid4: TStringGrid
Left = 25
Top = 435
Width = 270
Height = 249
ColCount = 4
FixedCols = 0
RowCount = 2
TabOrder = 12
ColWidths = (
64
64
64
64)
end
end
object TopPanel: TPanel
Left = 0
Top = 0
Width = 1366
Height = 43
Align = alTop
BevelOuter = bvNone
Color = 3615784
ParentBackground = False
TabOrder = 0
object imgMenu: TImage
Left = 0
Top = 0
Width = 50
Height = 43
Cursor = crHandPoint
Hint = 'Menu'
Align = alLeft
Center = True
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D49484452000000200000
00200806000000737A7AF4000000097048597300000EC400000EC401952B0E1B
000000AD4944415478DAED97310A02410C453362252222CBE2853D8785A7D8CA
43587803DD55D041C4D2F12F83538A85F2B6C88790CF34FFC12445424A696B66
4BD55835B2AC77FFA4E70FDE4E41006799EA8BC07FE8D0037432350970B4FC05
18C0466601015C02145CE4003C8086B0519F42F9F71EE02A338700A203F03300
051739000FA0215CAB4FA0FCC720D6D00176323308E0C66F8103E0001AC295E5
CB8838CDE2204E331C003FCDF62040FB0233B86885DE3957780000000049454E
44AE426082}
OnClick = imgMenuClick
end
object lbTop: TLabel
Left = 60
Top = 5
Width = 604
Height = 28
Caption = 'STOCKS FORECAST APPLICATION WITH FUZZY TIME SERIES METHOD'
Color = 2564392
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -20
Font.Name = 'Segoe UI'
Font.Style = []
ParentColor = False
ParentFont = False
end
end
object SV: TSplitView
Left = 0
Top = 43
Width = 50
Height = 725
CloseStyle = svcCompact
Color = 13151899
DisplayMode = svmOverlay
Opened = False
OpenedWidth = 200
Placement = svpLeft
TabOrder = 1
OnClick = SVClick
OnClosed = SVClosed
OnOpened = SVOpened
OnOpening = SVOpening
object catButton: TCategoryButtons
Left = 0
Top = -25
Width = 50
Height = 386
Cursor = crHandPoint
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
ButtonFlow = cbfVertical
ButtonHeight = 70
ButtonWidth = 100
ButtonOptions = [boFullSize, boShowCaptions, boCaptionOnlyBorder]
Categories = <
item
Color = clNone
Collapsed = False
Items = <
item
Action = actFormHome
Caption = 'HOME'
ImageIndex = 1
end
item
Action = actFormData
Caption = 'DATA'
ImageIndex = 9
end
item
Action = actFormForecast
Caption = 'FORECAST'
ImageIndex = 2
end
item
Action = actFormExit
Caption = 'EXIT'
ImageIndex = 7
end>
end>
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -16
Font.Name = 'Segoe UI'
Font.Style = []
HotButtonColor = 14258219
Images = ImageList
RegularButtonColor = clNone
SelectedButtonColor = clNone
TabOrder = 0
OnClick = catButtonClick
end
end
object ActionList: TActionList
Left = 8
Top = 496
object actMenu: TAction
ImageIndex = 1
OnExecute = actMenuExecute
end
object actClear: TAction
Caption = 'actClear'
OnExecute = actClearExecute
end
object actDefocus: TAction
Caption = 'actDefocus'
OnExecute = actDefocusExecute
end
object actFormHome: TAction
Caption = 'actFormHome'
OnExecute = actFormHomeExecute
end
object actFormData: TAction
Caption = 'actFormData'
OnExecute = actFormDataExecute
end
object actFormForecast: TAction
Caption = 'actFormForecast'
OnExecute = actFormForecastExecute
end
object actFormExit: TAction
Caption = 'actExit'
OnExecute = actFormExitExecute
end
object actCopy: TAction
Caption = 'actCopy'
OnExecute = actCopyExecute
end
end
object ImageList: TImageList
ColorDepth = cd32Bit
Height = 32
Width = 32
Left = 8
Top = 696
Bitmap = {
494C01010A001800040020002000FFFFFFFF2110FFFFFFFFFFFFFFFF424D3600
00000000000036000000280000008000000060000000010020000000000000C0
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000A0C0C0C382525256245454585656565A1898989BBA8A8A8CFC3C3
C3DFD8D8D8EBE0E0E0EFE0E0E0EFE0E0E0EFE0E0E0EFE0E0E0EFE0E0E0EFD4D4
D4E9BCBCBCDBA4A4A4CD838383B76363639F414141812121215C090909320000
0008000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000004040408040404080404040804040
4080404040804040408040404080404040804040408040404080404040804040
4080404040804040408040404080404040804040408040404080404040804040
4080404040804040408040404080404040804040408040404080404040804040
40804040408009090930000000000000000000000000020202183A3A3A7A9E9E
9EC9F7F7F7FBFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFEF
EFF7929292C13434347401010116000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFF2424246000000000000000000A0A0A34E7E7E7F3FFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFE3E3E3F10B0B0B360000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FFFFFFFFFFFFFFFFEBEBEBF5E0E0
E0EFE0E0E0EFFFFFFFFFFFFFFFFFEDEDEDF6E0E0E0EFF3F3F3F9FFFFFFFFF9F9
F9FCE0E0E0EFE5E5E5F2FFFFFFFFFFFFFFFFE5E5E5F2E0E0E0EFF9F9F9FCFFFF
FFFFF3F3F3F9E0E0E0EFEDEDEDF6FFFFFFFFFFFFFFFFE0E0E0EFE1E1E1F0FFFF
FFFFFFFFFFFF24242460000000000000000028282866FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFF2F2F2F6E0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FFFFFFFFFFFFFFFF242424600000
000000000000FFFFFFFFFFFFFFFF31313170000000006363639FFFFFFFFFA8A8
A8CF0000000009090930FFFFFFFFFFFFFFFF0909093000000000A8A8A8CFFFFF
FFFF6363639F0000000031313170FFFFFFFFFFFFFFFF0000000001010110FFFF
FFFFFFFFFFFF2424246000000000000000002A2A2A68FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFF2F2F2F6E0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FFFFFFFFFFFFFFFF242424600000
000000000000FFFFFFFFFFFFFFFF31313170000000006363639FFFFFFFFFA8A8
A8CF0000000009090930FFFFFFFFFFFFFFFF0909093000000000A8A8A8CFFFFF
FFFF6363639F0000000031313170FFFFFFFFFFFFFFFF0000000001010110FFFF
FFFFFFFFFFFF2424246000000000000000002A2A2A68FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFF2F2F2F6E0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FFFFFFFFFFFFFFFF242424600000
000000000000FFFFFFFFFFFFFFFF31313170000000006363639FFFFFFFFFA8A8
A8CF0000000009090930FFFFFFFFFFFFFFFF0909093000000000A8A8A8CFFFFF
FFFF6363639F0000000031313170FFFFFFFFFFFFFFFF0000000001010110FFFF
FFFFFFFFFFFF2424246000000000000000002A2A2A68FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFF2F2F2F6E0000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000FFFFFFFFFFFFFFFF242424600000
000000000000FFFFFFFFFFFFFFFF31313170000000006363639FFFFFFFFFA8A8
A8CF0000000009090930FFFFFFFFFFFFFFFF0909093000000000A8A8A8CFFFFF
FFFF6363639F0000000031313170FFFFFFFFFFFFFFFF0000000001010110FFFF
FFFFFFFFFFFF2424246000000000000000002A2A2A68FFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFD4D4D4E9929292C1656565A1454545852D2D2D6C1F1F1F5A1515
154A0F0F0F3E0B0B0B36090909300808082E0808082E090909320B0B0B360F0F
0F3E141414481F1F1F5A31313170494949896A6A6AA5989898C5DCDCDCEDFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFF2D2D2D6C0000000000000000000000000000