Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. # PT Feeder
  2.  
  3. # Changelog
  4. All notable changes to this project will be documented in this file.
  5.  
  6. ## [1.4.1]
  7.  
  8. ### Added
  9.  
  10. - NewCoinsGrouping to allow offsets and sell only mode to be set based on the age of a coin.
  11. - New market condition triggers. MaxVwapTrendChange and MaxLongTermVwapTrendChange. This is the volume weighted average price change of the coins that are included by your filters only. (e.g MinVolume, MinPrice, whitelist)
  12. - New long term market condition triggers. MinBaseCoinLongTermPriceChange, MaxTopCoinLongTermAverageChange
  13.  
  14. - Overrides. BuyStrategy override has been changed to Override. Any PT property can be overriden in this section, including sell strategy. Example config:
  15.  
  16. "Override": {
  17. "SellStrategy": "HIGHBB",
  18. "SellValue": "50",
  19. "MaxBuySpread": "1.5"
  20. }
  21.  
  22. - HiddenCoins list to automatically generate config for hidden coins.
  23. - Automatically generate Enabled pairs list instead of using ALL.
  24. - Add DcaMinBuyVolume and DcaMinBuyVolumeOffset to be driven from appsettings.json.
  25. - New groupings. VolumeTrendChangeGrouping and LongerTermVolumeChangeGrouping, both with the same trigger name of MaxVolumeTrendPercentageChange. This measures the difference in volume between the candle MinutesToMeasureTrend/MinutesForLongerTermTrend ago and the latest, expressed as a percentage change.
  26. - Log exact version number of PT Feeder on log and .properties files.
  27. - Log time on properties with applied servertimezoneoffset set in PT.
  28. - Set "ProfitTrailerVersion2": "true" in hostsettings.json
  29.  
  30. #### Changed
  31.  
  32. - Backward compatibility removed. Please rename:
  33.  
  34. In General section:
  35.  
  36. Cost => MaxCost
  37. NumberOfPairs => MaxTradingPairs
  38. ExcludedPairs => ExcludedCoins
  39. SomOnlyPairs => SomOnlyCoins
  40. DcaExcluded => DcaExcludedCoins
  41. EnabledPairsOnly => EnabledCoinsOnly
  42.  
  43. In Offsets:
  44.  
  45. MaxCostOffset instead CostOffset
  46.  
  47. - Grouping names now need to now end with Grouping.
  48.  
  49. e.g MarketConditions => MarketConditionsGrouping
  50.  
  51. - Volatility calcuations are now calculated on over check of the market.
  52. - Naming convention. All PT properties can be set in the General section. No prefix will mean they get written to pairs.properties and Dca prefix to dca.properties.
  53. - Performance improvements whilst running. Note that this will take longer shutting down now. Work in progress to improve this.
  54. - Fix exchange offsets not applying to ALL properties.
  55. - Fix USDT market not working correctly when top coin set
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement