Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - R

Pages: 1 ... 41 42 43 44 45 46 47 [48] 49 50 51 52 53 54 55 ... 68
706
General Discussion / Re: Creating a new BitShares Gateway, Premium name?
« on: January 13, 2018, 02:07:30 pm »
I think you need a basic account before creating a premium account, given that it costs extra BTS for the premium account name.

707
General Discussion / Re: HERTZ - Oscillating Formula Based Asset
« on: January 12, 2018, 11:31:28 pm »
Thanks to @roelandp, the reference price feed script has been fixed so as to output the correct price feed.

I've updated both the reference price feed script repo and the BTS HUG REST API repo to reflect this change.

Looking forwards to additional active witnesses publishing price feeds for the Hertz MPA!  +5%

Edit:

Just updated the first post to reflect the latest changes!

708
General Discussion / Re: How were the BTWTY tokens issued?
« on: January 12, 2018, 01:32:31 pm »
It's a market pegged asset, thus it has decentralized issuance - they're shorted/borrowed into existence.

709
Stakeholder Proposals / Re: [Witness Proposal] NeoWorker - neoreel-1
« on: January 12, 2018, 12:54:57 am »
Since this thread mentions "Witness Proposal", your post tells me I've made a mistake by creating a worker proposal. Doesn't a new Witness need to be voted in using an initial Worker Proposal?

The docs I've read state that you need to make a Worker Proposal to Propose for a Witness Node:
"Workers are the "catch all" group where if you have an idea for something that could improve the network."

Can you point out how I can solve this? Do I only need to set up a Full Node and run it? I thought I needed to be voted in...

Please enlighten me!
Thanks,

Anyone can run a full node and offer it to the public, but this is an unpaid/unrewarded role.

Anyone can register to become a witness, you need voted in before you become an active witness securing the network and earning rewards. http://docs.bitshares.org/bitshares/tutorials/index.html#witness-tutorials

No worker proposal is required to run full nodes nor witness roles.

710
Stakeholder Proposals / Re: [Witness Proposal] roelandp
« on: January 12, 2018, 12:53:08 am »
@roelandp: What price feed script are you using? You're quite far out from the intended price feed value.

I've added a public API for looking up a reference Hertz price feed: https://btsapi.grcnode.co.uk/get_hertz_value?api_key=123abc

Thanks

711
Stakeholder Proposals / Re: [Witness Proposal] NeoWorker - neoreel-1
« on: January 11, 2018, 11:19:33 pm »
Why a worker proposal? Not a witness?

712
General Discussion / Re: HERTZ - Oscillating Formula Based Asset
« on: January 11, 2018, 12:38:43 am »
New website: https://sites.google.com/view/hertz-aba/
New domain: www.hertz.network  (Should redirect to the above)

713
General Discussion / Re: HERTZ - Oscillating Formula Based Asset
« on: January 10, 2018, 04:51:22 pm »
We've got our first witness! @roelandp!

A huge shout out to him, this is the first step towards HERTZ trading on the BTS DEX!

6 more to go :)

https://steemit.com/bitshares/@cm-steem/hertz-14-activated-6-more-bitshares-witnesses-to-go

714
General Discussion / Re: HERTZ - Oscillating Formula Based Asset
« on: January 09, 2018, 10:40:32 pm »
I recently posted an update regarding Hertz to Steemit: https://steemit.com/bitshares/@cm-steem/hertz-updates-seeking-price-feed-publishers

I'm seeking new price feed publishers, specifically Bitshares witnesses.

The smartcoin currently requires 7 price feed publishers, and we've got our first - @rolandp, thanks you very much!

I'm hopeful that we can reach 7 publishers soon.

Best regards,
CM.

715
Stakeholder Proposals / Re: [Witness Proposal] roelandp
« on: January 09, 2018, 04:57:27 pm »
cool, for now I'll join the experiment!
Excellent, thanks for your participation :)

Now to get another 6 witnesses onboard & Hertz will be live!

716
Stakeholder Proposals / Re: [Witness Proposal] roelandp
« on: January 08, 2018, 09:54:52 pm »
Hey @Customminer great, sounds interesting, would love to learn a bit more about your thoughts behind the oscillation. Do you have some more info on the (fixed) formula and where can I learn a bit more about the Hertz asset? ... what day would be 0% etc. etc.

Hey,

Within my repo (https://github.com/BTS-CM/scripts) the following files are worth looking at:
* hertz_calculator.xlsx : A spreadsheet for evaluating the effect of different sine wave variables (amplitude, period, etc).
* hertz-verification.py : Used for verifying that the phase offset lines up appropriately.
* hertz-feed.py : What you'd use if you don't use wackou or xeroc's price feed scripts.

Within wackou's repo, here's my code entries: (Note: The pull request #36 needs implemented, or you can change 1/3 to 0.14 if using this script library)
* https://github.com/wackou/bts_tools/blob/master/bts_tools/feeds.py#L275
* https://github.com/wackou/bts_tools/blob/master/bts_tools/feeds.py#L441

And within xeroc's repo: (Issue #25 addresses the inaccurate amplitude comments)
* https://github.com/xeroc/bitshares-pricefeed/blob/master/bitshares_pricefeed/examples/hertz.yaml

Example python code snippet:
Code: [Select]
hz_reference_timestamp = pendulum.parse(reference_timestamp).timestamp() # Retrieving the Bitshares2.0 genesis block timestamp
hz_period = pendulum.SECONDS_PER_DAY * period_days
hz_phase = pendulum.SECONDS_PER_DAY * phase_days
hz_waveform = math.sin(((((current_timestamp - (hz_reference_timestamp + hz_phase))/hz_period) % 1) * hz_period) * ((2*math.pi)/hz_period)) # Only change for an alternative HERTZ ABA.
hz_value = reference_asset_value + ((amplitude * reference_asset_value) * hz_waveform)

---

So The idea is that with 14% amplitude, and a period of 28 days the value changes 2% every day. We use a phase offset (date/time) to make Wednesday (mid working week) the most important day for Hertz. On Wednesdays, Hertz price feed should be: $1.00 (start), $1.14 (first week passed), $1.00 (2nd week passed), $0.86 (3rd week), $1.00 (final week -> repeat). Check out the spreadsheet calculator to see the value through the month.

I've got some thoughts regarding how the market could potentially react: https://steemit.com/hertz/@cm-steem/what-is-the-hertz-algorithm-based-asset

Regarding oscillation, I believe that we could create phases of buying and sell pressure (through debt destruction as the price feed decreases & price appreciation as it increases), whether this will be realized and become popular is unknown. To make the first Hertz token stable, I significantly reduced the planned amplitude from 50% to 14%. A high amplitude would require high frequency price feed publishing, by decreasing the amplitude I was able to increase the maximum pricefeed lifetime from 220 to 1440 (more acceptable for publishers, hopefully).

Ideally, if this succeeds, we'll see similar algorithm based assets issued which oscillate using different wave equations (cos instead of sin) as well as different hertz parameters (within reason) and backing asset. The reason I created the spreadsheet calculator was for not just my own research but to spread the idea so that others may consider making similar ABAs.

It'd be interesting to create an opposite hertz token with the same parameters except a 2 week phase offset to produce the exact opposite price feed modification/oscillation.

Do you have any specific questions about Hertz?

717
Stakeholder Proposals / Re: [Witness Proposal] openledger-dc
« on: January 08, 2018, 09:12:33 pm »
Hey @ccedk, could you please begin publishing price feeds for the 'Hertz' asset? I would massively appreciate your support.

Hertz (Hz) is a Algorithm Based Asset (ABA) which is pegged against the USD and modified to oscillate using a sine wave, thus we are able to create potential phases of buying and selling pressure.

Important Smartcoin settings:
  • Maintenance collateral ratio (MCR): 175%
  • Maximum short squeeze ratio (MSSR): 150%
  • Max feed lifetime: 1440
  • Delay for forced settlements (minutes): 720
  • Percent offset of forced settlements: 1%
  • Min number of feeds: 7

Properties of Hertz (Hz):
  • Amplitude: 14% (NOT 33% nor 50% - It was changed to 14% for the first HERTZ asset).
  • Period: 28 days.
  • Daily price feed change: 1% per day.
  • Max price feed rate: $1.14
  • Min price feed rate: $0.86

Price feed scripts:

http://open-explorer.io/#/assets/HERTZ

Many thanks,
CM.

718
Stakeholder Proposals / Re: [Witness Proposal] roelandp
« on: January 08, 2018, 09:03:20 pm »
@roelandp : Could you please begin publishing price feeds for the 'Hertz' asset? I would massively appreciate your support.

Hertz (Hz) is a Algorithm Based Asset (ABA) which is pegged against the USD and modified to oscillate using a sine wave, thus we are able to create potential phases of buying and selling pressure.

Important Smartcoin settings:
  • Maintenance collateral ratio (MCR): 175%
  • Maximum short squeeze ratio (MSSR): 150%
  • Max feed lifetime: 1440
  • Delay for forced settlements (minutes): 720
  • Percent offset of forced settlements: 1%
  • Min number of feeds: 7

Properties of Hertz (Hz):
  • Amplitude: 14% (NOT 33% nor 50% - It was changed to 14% for the first HERTZ asset).
  • Period: 28 days.
  • Daily price feed change: 2% per day.
  • Max price feed rate: $1.14
  • Min price feed rate: $0.86

Price feed scripts:

http://open-explorer.io/#/assets/HERTZ

Many thanks,
CM.

719
Stakeholder Proposals / Re: [Witness Proposal] 1.6.71 - witness.yao
« on: January 08, 2018, 09:02:13 pm »
@Yao: Could you please begin publishing price feeds for the 'Hertz' asset? I would massively appreciate your support.

Hertz (Hz) is a Algorithm Based Asset (ABA) which is pegged against the USD and modified to oscillate using a sine wave, thus we are able to create potential phases of buying and selling pressure.

Important Smartcoin settings:
[spoiler]
  • Maintenance collateral ratio (MCR): 175%
  • Maximum short squeeze ratio (MSSR): 150%
  • Max feed lifetime: 1440
  • Delay for forced settlements (minutes): 720
  • Percent offset of forced settlements: 1%
  • Min number of feeds: 7
[/spoiler]

Properties of Hertz (Hz):
  • Amplitude: 14% (NOT 33% nor 50% - It was changed to 14% for the first HERTZ asset).
  • Period: 28 days.
  • Daily price feed change: 1% per day.
  • Max price feed rate: $1.14
  • Min price feed rate: $0.86

Price feed scripts:

http://open-explorer.io/#/assets/HERTZ

Many thanks,
CM.

Pages: 1 ... 41 42 43 44 45 46 47 [48] 49 50 51 52 53 54 55 ... 68