IZRL and PRNT closes #1

This commit is contained in:
Elijah McMorris 2024-06-07 13:34:33 -07:00
parent 45eae54f4c
commit b4c75c3490
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
3 changed files with 4 additions and 2 deletions

View file

@ -27,6 +27,8 @@ pub enum Ticker {
ARKD,
ARKY,
ARKB,
PRNT,
IZRL
}
impl Ticker {
pub fn value(&self) -> &str {
@ -44,6 +46,8 @@ impl Ticker {
Ticker::ARKD => "ARKD",
Ticker::ARKY => "ARKY",
Ticker::ARKB => "21SHARES_BITCOIN",
Ticker::PRNT => "THE_3D_PRINTING",
Ticker::IZRL => "ISRAEL_INNOVATIVE_TECHNOLOGY",
}
}
}