Package Details: motivewave 6.9.12-1

Git Clone URL: https://aur.archlinux.org/motivewave.git (read-only, click to copy)
Package Base: motivewave
Description: Advanced trading and charting application.
Upstream URL: https://www.motivewave.com
Keywords: charting forex stocks
Licenses: custom
Submitter: sundbp
Maintainer: xavierbaez
Last Packager: xavierbaez
Votes: 4
Popularity: 0.000002
First Submitted: 2020-11-20 22:16 (UTC)
Last Updated: 2025-04-08 22:44 (UTC)

Dependencies (6)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 Next › Last »

xavierbaez commented on 2023-09-03 02:43 (UTC) (edited on 2023-09-03 03:22 (UTC) by xavierbaez)

New updated released today

xavierbaez commented on 2023-09-03 02:31 (UTC)

This package has been updated 6 times in the last week.

xavierbaez commented on 2023-09-03 02:14 (UTC) (edited on 2023-09-03 02:59 (UTC) by xavierbaez)

it appears you just want to own this package. You are also duplicating this package, for no other reason than for ego. Nobody will flag an orphan package because they want to own the package, that is , except you of course.

You might want to use this in your computer:

```#!/usr/bin/python2.7 import os import re import glob import datetime import errno from operator import itemgetter

def mkdir_p(path): try: os.makedirs(path) except OSError as exc: # Python >2.5 if exc.errno == errno.EEXIST and os.path.isdir(path): pass else: logError("Could not create directory") raise

def reglob(path, exp, invert=False): """glob.glob() style searching which uses regex :param exp: Regex expression for filename :param invert: Invert match to non matching files """ m = re.compile(exp) if invert is False: res = [f for f in os.listdir(path) if m.search(f)] else: res = [f for f in os.listdir(path) if not m.search(f)] res = map(lambda x: "%s/%s" % ( path, x, ), res) return res

d = '/var/lib/pacman/local' d_old = '/var/lib/pacman/OLD' mkdir_p(d_old) packages = os.listdir(d) for p1 in packages: try: p1_name = re.search(r'^(.?)-([0-9]+)(.)', p1).group(1) except: pass print(p1_name) p = reglob(os.path.join(d), '^{0}-[0-9]+[.-\:].*'.format(re.escape(p1_name))) if len(p) > 1: p_stat = list() for p2 in p: p_stat.append((os.stat(p2).st_mtime, p2)) p_max = max(p_stat, key=itemgetter(0)) for p3 in p_stat: if p3 == p_max: continue p3_basename = os.path.basename(p3[1]) p3_new_path = os.path.join(d_old, p3_basename) print(p3_new_path) os.rename(p3[1], p3_new_path)```

MarsSeed commented on 2023-08-26 11:34 (UTC)

@xavierbaez, thank you, it works well!

xavierbaez commented on 2023-08-26 07:55 (UTC)

Version 6.7.10 This is a bug fix only release. No new features have been added in this update.

xavierbaez commented on 2023-08-26 07:55 (UTC)

Version 6.7.9 This version of MotiveWave contains numerous bug fixes and the following features: 1. Support/Resist Component – Added an option to show top/bottom prices. 2. TradeStation – Upgraded to V3 of the TradeStation API.