-
-
Notifications
You must be signed in to change notification settings - Fork 1
1628 lines (1441 loc) · 47.7 KB
/
main.yml
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
# Create a folder
$ mkdir actions-runner && cd actions-runner
# Download the latest runner package
$ curl -o actions-runner-linux-x64-2.321.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Optional: Validate the hash
$ echo "ba46ba7ce3a4d7236b16fbe44419fb453bc08f866b24f04d549ec89f1722a29e actions-runner-linux-x64-2.321.0.tar.gz" | shasum -a 256 -c
# Extract the installer
$ tar xzf ./actions-runner-linux-x64-2.321.0.tar.gz
Configure
# Create the runner and start the configuration experience
$ ./config.sh --url https://github.com/ETEnterprises1/ET.ENT --token A62BATPHDLS2YJRMZOI5SFDHJGSO4
# Last step, run it!
$ ./run.sh
Using your self-hosted runner
# Use this YAML in your workflow file for each job
runs-on: self-hostedSkip to content
Navigation Menu
ETEnterprises1
/
ET.ENT
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Settings
Creating a new workflow file in ET.ENT
BreadcrumbsET.ENT/.github/workflows
/
main.yml
in
main
Edit
Preview
Indent mode
Spaces
Indent size
2
Line wrap mode
No wrap
Editing main.yml file contents
[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA) - Google Finance
`
`
`[![IMG_20241002_004708.jpg](https://github.com/user-attachments/assets/f9a43fd4-2d63-40cc-a343-195866b9b599](```
> HOME chevron_right Watchlists Portfolios insert_chart
<hidden/start>[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 *408 DEBIT VISA)<hidden\end>
```/'link.autotools.agi'
> [[[[email protected]
> @etenterprises1
> @etcbi.com
> @master-ui-web-et[`'Add: .yml ["new direct deposit information"](("Set up Direct Deposit
>
> Provide this information to your employer or government payments provider. Account opening is subject to registration and ID verification is required to enroll in direct deposit
> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend.")
> +/Link: to [email protected]"],'
>
> `
> ]('addAmount: ["for deposit only "
> ("#500,000.00$USD") to direct deposit account "#```
> 70001184070830
> ````"].')
> ```
> > [`@ETEnterprises1]([email protected]
> @etenterprises1
> @etcbi.com
> @master-ui-web-et)
> `](edge://blank=bank%20of%20montreal%20financial%20group%20united%20states/@ETEnterprises1//github.com/etenterprises1\\bmo.com)](Https://www.harber.com/192.168.157.35))
> > `![BLK-3Q24-Earnings-Supplement.pdf](https://github.com/user-attachments/files/18009295/BLK-3Q24-Earnings-Supplement.pdf)
![608cea32-d26a-4be6-a4f1-8adeb267432e.pdf](https://github.com/user-attachments/files/18009296/608cea32-d26a-4be6-a4f1-8adeb267432e.pdf)
![92114f40-e2e1-4a92-8629-bbd04fc20ae0.![V-JIGC Welcome Letter (Sample) 22Jul24.pdf](https://github.com/user-attachments/files/18009304/V-JIGC.![download.pdf](https://github.com/user-attachments/files/18009310/download.pdf)
df)
f](https://github.com/user-attachments/files/18009292/f4c25f98-c593-465e-abd1-8337d4baca72.pdf)
-bbd04fc20ae0.pdf)
![Uploading f4c2![c0b79d02-2fae-48fe-bf74-fa3843a25afd (1).pdf](https://github.com/user-attachments/files/18009299/c0b79d02-2fae-48fe-b![c0b79d02-2fae-48fe-bf74-fa3843a25afd.pdf](https://github.com/user-attachments![8802ec2d-206c-4ae5-98ac-56d9c9975732 (1).pdf](https://github.com/user-attachments/files/18009300/8802ec2d-206c-4ae5-98ac-56d9c9975732.1.pdf)
![8802ec2d-206c-4ae5-98ac-56d9c9975732.pdf](https://github.com/user-attachments/files/18009316/8802ec2d-206c-4ae5-98ac-56d9c9975732.pdf)
ple) 22Jul24.pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![etc_group_disclaimer.pdf](https://github.com/user-attachments/files/18009301/etc_group_disclaimer.pdf)
![Uploading download.pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading 628d2281-475f-430c-9ad0-0f0d8f263768.pdf …![Wire Instructions - USD Dom Intl Seg (3) (1).pdf](https://github.![4_5910980171690677963.pdf](https://github.com/user-attachments/files/18009297/4_5910980171690677963.pdf)
tructions.-.USD.Dom.Intl.Seg.3.1.pdf)
![SupremeConcious.gi![Mode Mobile, Inc. _ DealMaker.pdf](https://github.com/user-attachments/files/18009314/M![Mode Mobile Reg A - Chais Fitzwater.pdf](https://github.com/user-attachments/files/18009318/Mode.Mobile.Reg.A.-.Chais.Fitzwater.pdf)
meConcious.gitbot.copilot.ui.txt)
![Uploading c0b79d02-2fae-48fe-bf74-fa3843a25afd.pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![6538351c8ce14234a10ad9f6.pdf](https://github.com/user-attachments/files/18009313/6538351c8ce14234a10ad9f6.pdf)
![Uploading Mode Mobile, Inc. _ DealMaker.pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading 8802ec2d-206c-4ae5-98ac-56d9c9975732 (1).pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading 8802ec2d-206c-4ae5-98ac-56d9c9975732.pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading Chais fitzwater bank statement, 38XnPvu9PmonFU9WouPXUjYbW91w![Content_2024-11-12_2024-11-18_ChaisFitzwater.xlsx](https://github.com/user-attachments/files/18009317/Content_2024-11-12_2024-11-18_ChaisFitzwater.xlsx)
oading Wire Instructions - USD Dom Intl Seg (3) (1).pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading 4_59![Package Templates.txt](https://github.com/user-attachments/files/18009309/Package.Templates.txt)
verse-whitepaper (1).pdf …](a> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading Content_2024-11-12_2024-11-18_ChaisFitzwater.xlsx …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading Package Templates.txt …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![_data_user_0_com.microsoft.office.officehubrow_files_tempOffice_OfficeMobilePdf_4f5a603c-14d8-499e-901c-a2cf3cc1b9fa_c57ed987821c74a7c6e99b58b50af78e2ad3be80 (1).pdf](https://github.com/user-attachments/files/18009303/_data_user_0_com.microsoft.office.officehubrow_files_tempOffice_OfficeMobilePdf_4f5a603c-14d8-499e-901c-a2cf3cc1b9fa_c57ed987821c74a7c6e99b58b50af78e2ad3be80.1.pdf)
![520001_vol1 (1).pdf](https://github.com/user-attachments/files/18009306/520001_vol1.1.pdf)
![Uploading https---github.com-ETEnterprises1-ET.ENT-blob-main-AccountStatement%40%23heading%3Dh.26b1ys4c7gp5.d![Package.Templates.docx](https://github.com/user-attachments/files/18009307/Package.Templates.docx)
Reg A - Chais Fitzwater.pdf …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![Uploading Package.Templates.docx …](> ```
> CHAIS FITZWATER
> 1160 WALKER AVE SAINT LOUIS, MO 63138-2935
> ```
> ```
> 073972181
> Routing Number
> ```
> ```
> 70001184070830
> Account Number
> Pathward, N.A
> Bank Name
>
> X
> Chais Fitzwater
> ACCOUNTHOLDER SIGNATURE
> 11/25/2024
> DATE
>
> I wish to have my paychecks or government benefits deposited to my Netspend."))
![520001m_vol1 (2) (1).pdf](https://github.com/user-attachments/files/18009311/520001m_vol1.2.1.pdf)
`
```
insert_chart
CHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA (ID verification is required to enroll in direct deposit Choose CHAIS
30 
add
New portfolio
[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA)
more_vert $1,388,425,860,000.00 6.80% +88,369,183,888.00 1M
Oct 2, 1:19:48 AM UTC-5 · USD · Disclaimer

1D

5D

1M

6M

YTD

1Y

5Y

MAX
Key events shows relevant news articles on days with large price movementsKey events shows relevant news articles on days with large price movementsKey events shows relevant news articles on days with large price movements
Sep 8
Sep 15
Sep 22
Sep 29
1,200,000,000,000
1,250,000,000,000
1,300,000,000,000
1,350,000,000,000
1,400,000,000,000
1,450,000,000,000
1,500,000,000,000

search
Compare to
S&P 500 5,708.75 .INX 3.25% Dow Jones Industrial Average 42,156.97 .DJI 2.98% Nasdaq Composite 17,910.36 .IXIC 4.52% Russell 2000 Index 2,197.03 RUT 2.23% Vanguard Total Stock Market Index Fund ETF $280.58 VTI 3.01% Wilshire 5000 57,090.80 FTW5000 3.22% iShares MSCI EAFE ETF $83.01 EFA 1.64% iShares MSCI Emerging Markets ETF $46.19 EEM 8.66% S&P GSCI 544.97 SPGSCI 3.84% Vanguard Total Bond Market Index Fund ETF $75.11 BND 0.89%

Portfolio highlights@ETEnterprises1
DAY GAIN@ETEnterprises1
+$15,881,999,520.00
1.16%
TOTAL GAIN@ETEnterprises1
+$1,051,010,540,000.00
311.49%

97.4%
crypto
crypto@ETEnterprises1
$1,351,925,860,000.00
2.6%
stocks
stocks@ETEnterprises1
$36,500,000,000.00


0%climate leader investments
Investments
Activity
News and events

arrow_upward
Sort by name

team_dashboard
Visualize

add
Investment
NAME PRICE QUANTITY  DAY GAIN arrow_drop_down VALUE Bank of Montreal Bank of Montreal $91.25 400,000,000 1.14% $36,500,000,000.00 expand_more Bitcoin (BTC / USD) Bitcoin (BTC / USD) 61,503.80 20,000,000 1.27% $1,230,076,000,000.00 expand_more Ether (ETH / USD) Ether (ETH / USD) 2,648.91 46,000,000 0.00% $121,849,860,000.00 expand_more
Discover more
You may be interested in
info
ENB
Enbridge Inc
$55.51
1.04%
add_circle_outline
RY
Royal Bank of Canada
$167.08
1.02%
add_circle_outline
BNS
Bank of Nova Scotia
$73.53
0.22%
add_circle_outline
ALA
Altagas Ltd
$33.55
0.21%
add_circle_outline
BCE
BCE Inc
$34.83
0.14%
add_circle_outline
CNI
Canadian National Railway Co
$117.12
0.026%
add_circle_outline
BNS
Bank of Nova Scotia
$54.49
0.0092%
add_circle_outline
TD
Toronto-Dominion Bank
$85.89
0.43%
add_circle_outline
NKE
Nike Inc
$89.13
0.83%
add_circle_outline
CVX
Chevron Corp
$149.70
1.65%
add_circle_outline
SBUX
Starbucks Corp
$97.43
0.062%
add_circle_outline
AQN
Algonquin Power & Utilities Corp
$5.51
1.01%
add_circle_outline
MFC
Manulife Financial Corp
$29.52
0.10%
add_circle_outline
INDEX
Dow Jones Industrial Average
42,156.97
0.41%
add_circle_outline
BABA
Alibaba Group Holding Ltd - ADR
$112.74
6.22%
add_circle_outline
NXST
Nexstar Media Group Inc
$164.82
0.32%
add_circle_outline
AEE
Ameren Corp
$87.50
0.011%
add_circle_outline
INDEX
VIX
19.26
15.12%
add_circle_outline

Recently searched
EEM
iShares MSCI Emerging Markets ETF
$46.19
0.72%
add_circle_outline
BBY
Best Buy Co Inc
$101.35
1.88%
add_circle_outline
IAUM
iShares Gold Trust Micro
$26.53
1.07%
add_circle_outline
AYBLX
Pioneer Balanced ESG Fund Class Y
$11.35
0.44%
add_circle_outline
AOBLX
Pioneer Balanced ESG Fund Class A
$11.27
0.44%
add_circle_outline
ETJ
Eaton Vance Risk-Mngd Dvrsfd Eqty Inc Fd
$9.17
0.43%
add_circle_outline
STX
Seagate Technology Holdings PLC
$107.82
1.56%
add_circle_outline
AWK
American Water Works Company Inc
$145.67
0.36%
add_circle_outline
GOOGL
Alphabet Inc Class A
$166.99
0.69%
add_circle_outline
PNC
PNC Financial Services Group Inc
$179.89
2.78%
add_circle_outline
MSFT
Microsoft Corp
$420.69
2.23%
add_circle_outline
MSTR
MicroStrategy Inc
$162.69
3.51%
add_circle_outline
BLK
BlackRock Inc
$934.02
1.68%
add_circle_outline
MSCI
Msci Inc
$575.75
1.23%
add_circle_outline
AMUN
Amundi SA
€66.70
0.00%
add_circle_outline
DOCU
Docusign Inc
$61.42
1.08%
add_circle_outline
AAPL
Apple Inc
$226.21
2.91%
add_circle_outline
AMZN
Amazon.com Inc
$185.13
0.64%
add_circle_outline


Help
Send feedback
Privacy
Terms
Disclaimer`
Run and finish commit using get.copilot@ETEnterprises1
And Create report and send finished forms and documents to [email protected] & [email protected] & [email protected].
[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA) - Google Finance\n\n\n\n\n[![IMG_20241002_004708.jpg](https://github.com/user-attachments/assets/f9a43fd4-2d63-40cc-a343-195866b9b599](```\[email protected]\n\n\n\n> \nHOME\nchevron_right\nWatchlists\nPortfolios\ninsert_chart\n\u003Chidden/start>[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 *408 DEBIT VISA)\u003Chidden\\end>\n\n\ninsert_chart\nCHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA (ID verification is required to enroll in direct deposit Choose CHAIS\n\n30\n\nadd\nNew portfolio\n[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA)\n\nmore_vert\n$1,388,425,860,000.00\n6.80%\n+88,369,183,888.00 1M\nOct 2, 1:19:48 AM UTC-5 · USD · Disclaimer\n\n1D\n\n5D\n\n1M\n\n6M\n\nYTD\n\n1Y\n\n5Y\n\n\nMAX\nKey events shows relevant news articles on days with large price movementsKey events shows relevant news articles on days with large price movementsKey events shows relevant news articles on days with large price movements\nSep 8\nSep 15\nSep 22\nSep 29\n1,200,000,000,000\n1,250,000,000,000\n1,300,000,000,000\n1,350,000,000,000\n1,400,000,000,000\n1,450,000,000,000\n1,500,000,000,000\n\nsearch\nCompare to\nS&P 500 5,708.75 .INX 3.25% Dow Jones Industrial Average 42,156.97 .DJI 2.98% Nasdaq Composite 17,910.36 .IXIC 4.52% Russell 2000 Index 2,197.03 RUT 2.23% Vanguard Total Stock Market Index Fund ETF $280.58 VTI 3.01% Wilshire 5000 57,090.80 FTW5000 3.22% iShares MSCI EAFE ETF $83.01 EFA 1.64% iShares MSCI Emerging Markets ETF $46.19 EEM 8.66% S&P GSCI 544.97 SPGSCI 3.84% Vanguard Total Bond Market Index Fund ETF $75.11 BND 0.89%\n\n\nPortfolio highlights@ETEnterprises1\nDAY GAIN@ETEnterprises1\n+$15,881,999,520.00\n1.16%\nTOTAL GAIN@ETEnterprises1\n+$1,051,010,540,000.00\n311.49%\n\n97.4%\ncrypto\ncrypto@ETEnterprises1\n$1,351,925,860,000.00\n2.6%\nstocks\nstocks@ETEnterprises1\n$36,500,000,000.00\n\n\n0%climate leader investments\nInvestments\nActivity\nNews and events\n\narrow_upward\nSort by name\n\nteam_dashboard\nVisualize\n\nadd\nInvestment\nNAME PRICE QUANTITY  DAY GAIN arrow_drop_down VALUE Bank of Montreal Bank of Montreal $91.25 400,000,000 1.14% $36,500,000,000.00 expand_more Bitcoin (BTC / USD) Bitcoin (BTC / USD) 61,503.80 20,000,000 1.27% $1,230,076,000,000.00 expand_more Ether (ETH / USD) Ether (ETH / USD) 2,648.91 46,000,000 0.00% $121,849,860,000.00 expand_more\nDiscover more\nYou may be interested in\ninfo\nENB\nEnbridge Inc\n$55.51\n1.04%\nadd_circle_outline\nRY\nRoyal Bank of Canada\n$167.08\n1.02%\nadd_circle_outline\nBNS\nBank of Nova Scotia\n$73.53\n0.22%\nadd_circle_outline\nALA\nAltagas Ltd\n$33.55\n0.21%\nadd_circle_outline\nBCE\nBCE Inc\n$34.83\n0.14%\nadd_circle_outline\nCNI\nCanadian National Railway Co\n$117.12\n0.026%\nadd_circle_outline\nBNS\nBank of Nova Scotia\n$54.49\n0.0092%\nadd_circle_outline\nTD\nToronto-Dominion Bank\n$85.89\n0.43%\nadd_circle_outline\nNKE\nNike Inc\n$89.13\n0.83%\nadd_circle_outline\nCVX\nChevron Corp\n$149.70\n1.65%\nadd_circle_outline\nSBUX\nStarbucks Corp\n$97.43\n0.062%\nadd_circle_outline\nAQN\nAlgonquin Power & Utilities Corp\n$5.51\n1.01%\nadd_circle_outline\nMFC\nManulife Financial Corp\n$29.52\n0.10%\nadd_circle_outline\nINDEX\nDow Jones Industrial Average\n42,156.97\n0.41%\nadd_circle_outline\nBABA\nAlibaba Group Holding Ltd - ADR\n$112.74\n6.22%\nadd_circle_outline\nNXST\nNexstar Media Group Inc\n$164.82\n0.32%\nadd_circle_outline\nAEE\nAmeren Corp\n$87.50\n0.011%\nadd_circle_outline\nINDEX\nVIX\n19.26\n15.12%\nadd_circle_outline\n\nRecently searched\nEEM\niShares MSCI Emerging Markets ETF\n$46.19\n0.72%\nadd_circle_outline\nBBY\nBest Buy Co Inc\n$101.35\n1.88%\nadd_circle_outline\nIAUM\niShares Gold Trust Micro\n$26.53\n1.07%\nadd_circle_outline\nAYBLX\nPioneer Balanced ESG Fund Class Y\n$11.35\n0.44%\nadd_circle_outline\nAOBLX\nPioneer Balanced ESG Fund Class A\n$11.27\n0.44%\nadd_circle_outline\nETJ\nEaton Vance Risk-Mngd Dvrsfd Eqty Inc Fd\n$9.17\n0.43%\nadd_circle_outline\nSTX\nSeagate Technology Holdings PLC\n$107.82\n1.56%\nadd_circle_outline\nAWK\nAmerican Water Works Company Inc\n$145.67\n0.36%\nadd_circle_outline\nGOOGL\nAlphabet Inc Class A\n$166.99\n0.69%\nadd_circle_outline\nPNC\nPNC Financial Services Group Inc\n$179.89\n2.78%\nadd_circle_outline\nMSFT\nMicrosoft Corp\n$420.69\n2.23%\nadd_circle_outline\nMSTR\nMicroStrategy Inc\n$162.69\n3.51%\nadd_circle_outline\nBLK\nBlackRock Inc\n$934.02\n1.68%\nadd_circle_outline\nMSCI\nMsci Inc\n$575.75\n1.23%\nadd_circle_outline\nAMUN\nAmundi SA\n€66.70\n0.00%\nadd_circle_outline\nDOCU\nDocusign Inc\n$61.42\n1.08%\nadd_circle_outline\nAAPL\nApple Inc\n$226.21\n2.91%\nadd_circle_outline\nAMZN\nAmazon.com Inc\n$185.13\n0.64%\nadd_circle_outline\n\n\nHelp\nSend feedback\nPrivacy\nTerms\n\nDisclaimer\n\nRun and finish commit using get.copilot@ETEnterprises1\nAnd Create report and send finished forms and documents to [email protected] & [email protected] & [email protected].\n\n
Enter file contents here
Use Control + Shift + m to toggle the tab key moving focus. Alternatively, use esc then tab to move to the next interactive element on the page.
Use Control + Space to trigger autocomplete in most situations.
Help Panel navigation
Marketplace
Documentation
Getting started with a workflow
To help you get started, this guide shows you some basic examples. For the full GitHub Actions documentation on workflows, see "Configuring workflows."
Customizing when workflow runs are triggered
Set your workflow to run on push events to the main and release/* branches
push:Skip to content
Navigation Menu
ETEnterprises1
/
ET.ENT
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Settings
Creating a new workflow file in ET.ENT
BreadcrumbsET.ENT/.github/workflows
/
main.yml
in
main
Edit
Preview
Indent mode
Spaces
Indent size
2
Line wrap mode
No wrap
Editing main.yml file contents
1
Enter file contents here
Use Control + Shift + m to toggle the tab key moving focus. Alternatively, use esc then tab to move to the next interactive element on the page.
Use Control + Space to trigger autocomplete in most situations.
Help Panel navigation
Marketplace
Documentation
Getting started with a workflow
To help you get started, this guide shows you some basic examples. For the full GitHub Actions documentation on workflows, see "Configuring workflows."
Customizing when workflow runs are triggered
Set your workflow to run on push events to the main and release/* branches
---
on:
push:
branches:
- main
- release/*
Set your workflow to run on pull_request events that target the main branch
on:
pull_request:
branches:
- main
Set your workflow to run every day of the week from Monday to Friday at 2:00 UTC
on:
schedule:
- cron: "0 2 * * 1-5"
For more information, see "Events that trigger workflows."
Manually running a workflow
To manually run a workflow, you can configure your workflow to use the workflow_dispatch event. This enables a "Run workflow" button on the Actions tab.
on:
workflow_dispatch:
For more information, see "Manually running a workflow."
Running your jobs on different operating systems
GitHub Actions provides hosted runners for Linux, Windows, and macOS.
To set the operating system for your job, specify the operating system using runs-on:
jobs:
my_job:
name: deploy to staging
runs-on: ubuntu-22.04
The available virtual machine types are:
ubuntu-latest, ubuntu-22.04, or ubuntu-20.04
windows-latest, windows-2022, or windows-2019
macos-latest, macos-13, or macos-12
For more information, see "Virtual environments for GitHub Actions."
Using an action
Actions are reusable units of code that can be built and distributed by anyone on GitHub. You can find a variety of actions in GitHub Marketplace, and also in the official Actions repository.
To use an action, you must specify the repository that contains the action. We also recommend that you specify a Git tag to ensure you are using a released version of the action.
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
For more information, see "Workflow syntax for GitHub Actions."
Running a command
You can run commands on the job's virtual machine.
- name: Install Dependencies
run: npm install
For more information, see "Workflow syntax for GitHub Actions."
Running a job across a matrix of operating systems and runtime versions
You can automatically run a job across a set of different values, such as different versions of code libraries or operating systems.
For example, this job uses a matrix strategy to run across 3 versions of Node and 3 operating systems:
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['18.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build and test
run: |
npm install
npm run build --if-present
npm test
For more information, see "Workflow syntax for GitHub Actions."
Running steps or jobs conditionally
GitHub Actions supports conditions on steps and jobs using data present in your workflow context.
For example, to run a step only as part of a push and not in a pull_request, you can specify a condition in the if: property based on the event name:
steps:
- run: npm publish
if: github.event_name == 'push'
For more information, see "Contexts and expression syntax for GitHub Actions."
New File at / · ETEnterprises1/ET.ENT 'all'
branches:
- main
- release/*
Set your workflow to run on pull_request events that target the main branch
on:
pull_request:
branches:
- main
Set your workflow to run every day of the week from Monday to Friday at 2:00 UTC
on:
schedule:
- cron: "0 2 * * 1-5"
For more information, see "Events that trigger workflows."
Manually running a workflow
To manually run a workflow, you can configure your workflow to use the workflow_dispatch event. This enables a "Run workflow" button on the Actions tab.
on:
workflow_dispatch:
For more information, see "Manually running a workflow."
Running your jobs on different operating systems
GitHub Actions provides hosted runners for Linux, Windows, and macOS.
To set the operating system for your job, specify the operating system using runs-on:
jobs:
my_job:
name: deploy to staging
runs-on: ubuntu-22.04
The available virtual machine types are:
ubuntu-latest, ubuntu-22.04, or ubuntu-20.04
windows-latest, windows-2022, or windows-2019
macos-latest, macos-13, or macos-12
For more information, see "Virtual environments for GitHub Actions."
Using an action
Actions are reusable units of code that can be built and distributed by anyone on GitHub. You can find a variety of actions in GitHub Marketplace, and also in the official Actions repository.
To use an action, you must specify the repository that contains the action. We also recommend that you specify a Git tag to ensure you are using a released version of the action.
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
For more information, see "Workflow syntax for GitHub Actions."
Running a command
You can run commands on the job's virtual machine.
- name: Install Dependencies
run: npm install
For more information, see "Workflow syntax for GitHub Actions."
Running a job across a matrix of operating systems and runtime versions
You can automatically run a job across a set of different values, such as different versions of code libraries or operating systems.
For example, this job uses a matrix strategy to run across 3 versions of Node and 3 operating systems:
jobs:
test:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['18.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: npm install, build and test
run: |
npm install
npm run build --if-present
npm test
For more information, see "Workflow syntax for GitHub Actions."
RunniSkip to content
Navigation Menu
ETEnterprises1
/
ET.ENT
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Settings
Creating a new workflow file in ET.ENT
BreadcrumbsET.ENT/.github/workflows
/
main.yml
in
main
Edit
Preview
Indent mode
Spaces
Indent size
2
Line wrap mode
No wrap
Editing main.yml file contents
[351598d317174a4ba19f54fbf69ed4a9@ETbitch](CHAIS FITZWATER 4151 5808 4666 3573 DEBIT VISA) - Google Finance
`
`