InstaRound

Documentation for InstaRound.

A simple package for extending Base.round with instagram like rounding.

Installation

To install InstaRound either do

using Pkg
Pkg.add("InstaRound")

or switch to Pkg mode with ] and issue

pkg> add InstaRound

Basic Usage

Round numbers with IGRound

using InstaRound

julia> round(IGRound, 1_000_000; names=false)
"1.0M"

julia> round(IGRound, 1_000_000; names=true)
"1.0 Million"

Practical Use Case

using InstaRound
using PolygonIO
using DataFrames


opts = PolyOpts(API_KEY, DataFrame)
bars_df = crypto_aggregates_bars(opts, "X:BTCUSD", 5, "minute", "2020-10-14", "2020-10-16")
julia> round.(IGRound, bars_df.c; names=false)
24-element Vector{String}:
 "11.42K"
 "11.42K"
 "11.44K"
 "11.45K"
 "11.45K"
 "11.45K"
 "11.45K"
 ⋮
 "11.44K"
 "11.44K"
 "11.44K"
 "11.45K"
 "11.45K"
 "11.45K"
 "11.44K"
julia> round.(IGRound, bars_df.c; names=true)
24-element Vector{String}:
 "11.42 Thousand"
 "11.42 Thousand"
 "11.44 Thousand"
 "11.45 Thousand"
 "11.45 Thousand"
 "11.45 Thousand"
 "11.45 Thousand"
 ⋮
 "11.44 Thousand"
 "11.44 Thousand"
 "11.44 Thousand"
 "11.45 Thousand"
 "11.45 Thousand"
 "11.45 Thousand"
 "11.44 Thousand"

Abbreviation Source

AbbreviationNameValueEquivalent
KThousand (Kilo)10^31000
MMillion10^61000K
BBillion10^91000M
tTrillion10^121000B
qQuadrillion10^151000t
QQuintillion10^181000q
sSextillion10^211000Q
SSeptillion10^241000s
oOctillion10^271000S
nNonillion10^301000o
dDecillion10^331000n
UUndecillion10^361000d
DDuodecillion10^391000U
TTredecillion10^421000D
QtQuattuordecillion10^451000T
QdQuindecillion10^481000Qt
SdSexdecillion10^511000Qd
StSeptendecillion10^541000Sd
OOctodecillion10^571000St
NNovemdecillion10^601000O
vVigintillion10^631000N
cUnvigintillion10^661000v
Base.roundMethod
round(::Type{IGRound}, x::Number; names::Bool=false)

Function to round a number x to the nearest IG style.

Arguments

  • x: The number to be rounded.
  • names: If true, the unit will be names, if false, the unit will be the number.

Example

julia> round(IGRound, 100_000; names=true)
"100Thousand"
source
InstaRound.number_groupsMethod
number_groups(s::AbstractString)

Internal function to extract the two groups of numbers from a '.' separated string.

source