0

Yellow or Orange Bullet

Hi, I am looking for an orange bullet in text similar to the red and blue I have in code below. Thanks

let xBar := "";let xRepeat := 'Strategy $ Structure Score';if xRepeat <= 24 then    xRepeat := 'Strategy $ Structure Score'else    xRepeat := 24end;for i from 0 to xRepeat + 3 do    if i <= 8 then        xBar := xBar + "🔴"    else        if i > 8 and i <= 16 then            xBar := xBar + "0"        else            if i > 16 and i <= 24 then xBar := xBar + "🔵" end        end    endend;xBar

2 replies

null
    • steergoosen
    • 2 yrs ago
    • Reported - view

    let xBar := "";
    let xRepeat := 'Strategy $ Structure Score';
    if xRepeat <= 24 then
        xRepeat := 'Strategy $ Structure Score'
    else
        xRepeat := 24
    end;
    for i from 0 to xRepeat + 3 do
        if i <= 8 then
            xBar := xBar + "🔴"
        else
            if i > 8 and i <= 16 then
                xBar := xBar + "0"
            else
                if i > 16 and i <= 24 then xBar := xBar + "🔵" end
            end
        end
    end;
    xBar

    • steergoosen
    • 2 yrs ago
    • Reported - view

    Answered myself - just search the color bullet you want in google 🟢🟠etc